summaryrefslogtreecommitdiff
path: root/usr.sbin/pppd/pppd.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-01-17 20:30:34 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-01-17 20:30:34 +0000
commitb6c2c5d46982fa50e23e185005bab4af5592563a (patch)
tree05bba4b86a5a00dac72b1988a50d56dea8276a6e /usr.sbin/pppd/pppd.h
parentca091f8038b0ce14749ada5c80eb7f63cfc4f3af (diff)
ppp-2.3.3 + some -Wall
Diffstat (limited to 'usr.sbin/pppd/pppd.h')
-rw-r--r--usr.sbin/pppd/pppd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pppd/pppd.h b/usr.sbin/pppd/pppd.h
index 5dd30475793..9400f09e003 100644
--- a/usr.sbin/pppd/pppd.h
+++ b/usr.sbin/pppd/pppd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pppd.h,v 1.7 1997/10/25 05:09:56 millert Exp $ */
+/* $OpenBSD: pppd.h,v 1.8 1998/01/17 20:30:28 millert Exp $ */
/*
* pppd.h - PPP daemon global declarations.
@@ -180,9 +180,9 @@ extern struct protent *protocols[];
void die __P((int)); /* Cleanup and exit */
void quit __P((void)); /* like die(1) */
void novm __P((char *)); /* Say we ran out of memory, and die */
-void timeout __P((void (*func)(caddr_t), caddr_t arg, int t));
+void timeout __P((void (*func)(void *), void *arg, int t));
/* Call func(arg) after t seconds */
-void untimeout __P((void (*func)(caddr_t), caddr_t arg));
+void untimeout __P((void (*func)(void *), void *arg));
/* Cancel call to func(arg) */
int run_program __P((char *prog, char **args, int must_exist));
/* Run program prog with args in child */