summaryrefslogtreecommitdiff
path: root/pppd
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1999-04-01 07:19:59 +0000
committerPaul Mackerras <paulus@samba.org>1999-04-01 07:19:59 +0000
commitf941c11e2e2de87900a20cf38f2d2d53d772c10e (patch)
treed46644de864e731e6b2bb374558aef8526ebc844 /pppd
parent52e781b87df66bd5a4eb075791f4d91604016144 (diff)
downloadppp-f941c11e2e2de87900a20cf38f2d2d53d772c10e.tar.gz
remove another ansi-C-ism
Diffstat (limited to 'pppd')
-rw-r--r--pppd/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pppd/main.c b/pppd/main.c
index 1b35cd1..cad0fa3 100644
--- a/pppd/main.c
+++ b/pppd/main.c
@@ -18,7 +18,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: main.c,v 1.72 1999/04/01 07:08:48 paulus Exp $";
+static char rcsid[] = "$Id: main.c,v 1.73 1999/04/01 07:19:59 paulus Exp $";
#endif
#include <stdio.h>
@@ -153,8 +153,8 @@ static void record_child __P((int, char *, void (*) (void *), void *));
static int start_charshunt __P((int, int));
static void charshunt_done __P((void *));
static void charshunt __P((int, int, char *));
-static int record_write(FILE *, int code, u_char *buf, int nb,
- struct timeval *);
+static int record_write __P((FILE *, int code, u_char *buf, int nb,
+ struct timeval *));
extern char *ttyname __P((int));
extern char *getlogin __P((void));