diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-01-21 02:15:33 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-01-21 02:15:33 +0000 |
| commit | aa8e05197cf50f96207ce5e9cc07395ca319f3e0 (patch) | |
| tree | 21512f1df4e6689135bea180abab296b897a5e93 /usr.sbin/ppp/timer.c | |
| parent | 764d8cef563c93a98679d7d45d03c4c1df5380fc (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ppp/timer.c')
| -rw-r--r-- | usr.sbin/ppp/timer.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ppp/timer.c b/usr.sbin/ppp/timer.c index ac7b08954e4c8..fa53b3949f799 100644 --- a/usr.sbin/ppp/timer.c +++ b/usr.sbin/ppp/timer.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: timer.c,v 1.25 1997/12/28 21:55:04 brian Exp $ + * $Id: timer.c,v 1.26 1997/12/29 22:23:52 brian Exp $ * * TODO: */ @@ -27,17 +27,15 @@ #include <errno.h> #endif #include <sys/time.h> -#include <stdio.h> #include <unistd.h> #include "command.h" #include "mbuf.h" #include "log.h" -#include "defs.h" #include "sig.h" #include "timer.h" -struct pppTimer *TimerList = NULL; +static struct pppTimer *TimerList = NULL; static void StopTimerNoBlock(struct pppTimer *); static void InitTimerService(void); @@ -143,7 +141,7 @@ StopTimerNoBlock(struct pppTimer * tp) tp->state = TIMER_STOPPED; } -void +static void TimerService() { struct pppTimer *tp, *exp, *wt; |
