diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/cdefs.h | 4 | ||||
-rw-r--r-- | usr.sbin/ppp/chat.c | 3 | ||||
-rw-r--r-- | usr.sbin/ppp/timer.c | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/usr.sbin/ppp/cdefs.h b/usr.sbin/ppp/cdefs.h index 54011af..540905d 100644 --- a/usr.sbin/ppp/cdefs.h +++ b/usr.sbin/ppp/cdefs.h @@ -15,13 +15,13 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id$ + * $Id: cdefs.h,v 1.3 1997/02/22 16:10:04 peter Exp $ * * TODO: */ #ifndef __P -#ifdef __bsdi__ +#if defined(__bsdi__) || defined(__FreeBSD__) #include <sys/cdefs.h> #else #ifdef __STDC__ diff --git a/usr.sbin/ppp/chat.c b/usr.sbin/ppp/chat.c index acb57c0..bab5a9a 100644 --- a/usr.sbin/ppp/chat.c +++ b/usr.sbin/ppp/chat.c @@ -18,7 +18,7 @@ * Columbus, OH 43221 * (614)451-1883 * - * $Id: chat.c,v 1.19 1997/03/08 12:15:58 ache Exp $ + * $Id: chat.c,v 1.20 1997/03/09 20:03:34 ache Exp $ * * TODO: * o Support more UUCP compatible control sequences. @@ -34,7 +34,6 @@ #include <sys/time.h> #include <fcntl.h> #include <errno.h> -#include <sys/cdefs.h> #include <signal.h> #include <sys/wait.h> #include "timeout.h" diff --git a/usr.sbin/ppp/timer.c b/usr.sbin/ppp/timer.c index 978ea63..629da58 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.11 1997/03/08 09:55:42 ache Exp $ + * $Id: timer.c,v 1.12 1997/03/09 20:03:51 ache Exp $ * * TODO: */ @@ -25,7 +25,6 @@ #include <sys/time.h> #include <signal.h> #include "timeout.h" -#include <sys/cdefs.h> #ifdef SIGALRM #include <errno.h> #endif |