summaryrefslogtreecommitdiff
path: root/package/ppp/patches/patch-pppd_tty_c
blob: 3588e439a839b2e6645d11a5e986a25b693902d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
--- ppp-2.4.5.orig/pppd/tty.c	2009-11-16 23:26:07.000000000 +0100
+++ ppp-2.4.5/pppd/tty.c	2014-03-17 16:13:14.000000000 +0100
@@ -98,28 +98,28 @@
 #include "fsm.h"
 #include "lcp.h"
 
-void tty_process_extra_options __P((void));
-void tty_check_options __P((void));
-int  connect_tty __P((void));
-void disconnect_tty __P((void));
-void tty_close_fds __P((void));
-void cleanup_tty __P((void));
-void tty_do_send_config __P((int, u_int32_t, int, int));
+void tty_process_extra_options (void);
+void tty_check_options (void);
+int  connect_tty (void);
+void disconnect_tty (void);
+void tty_close_fds (void);
+void cleanup_tty (void);
+void tty_do_send_config (int, u_int32_t, int, int);
 
-static int setdevname __P((char *, char **, int));
-static int setspeed __P((char *, char **, int));
-static int setxonxoff __P((char **));
-static int setescape __P((char **));
-static void printescape __P((option_t *, void (*)(void *, char *,...),void *));
-static void finish_tty __P((void));
-static int start_charshunt __P((int, int));
-static void stop_charshunt __P((void *, int));
-static void charshunt_done __P((void *));
-static void charshunt __P((int, int, char *));
-static int record_write __P((FILE *, int code, u_char *buf, int nb,
-			     struct timeval *));
-static int open_socket __P((char *));
-static void maybe_relock __P((void *, int));
+static int setdevname (char *, char **, int);
+static int setspeed (char *, char **, int);
+static int setxonxoff (char **);
+static int setescape (char **);
+static void printescape (option_t *, void (*)(void *, char *,...),void *);
+static void finish_tty (void);
+static int start_charshunt (int, int);
+static void stop_charshunt (void *, int);
+static void charshunt_done (void *);
+static void charshunt (int, int, char *);
+static int record_write (FILE *, int code, u_char *buf, int nb,
+			     struct timeval *);
+static int open_socket (char *);
+static void maybe_relock (void *, int);
 
 static int pty_master;		/* fd for master side of pty */
 static int pty_slave;		/* fd for slave side of pty */
@@ -374,7 +374,7 @@ setescape(argv)
 static void
 printescape(opt, printer, arg)
     option_t *opt;
-    void (*printer) __P((void *, char *, ...));
+    void (*printer) (void *, char *, ...);
     void *arg;
 {
 	int n;