diff options
| author | Brian Somers <brian@FreeBSD.org> | 1999-09-20 07:36:46 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1999-09-20 07:36:46 +0000 |
| commit | 7e795ebe3863c1eb476cb1674a1e281fb2d1a981 (patch) | |
| tree | 7c6738a2a8abb66f13fa6933825a273e3abc4de6 | |
| parent | e83358b444c3dcb93b56eb53e3150eb2e327ad1f (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/arp.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/bundle.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/chat.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/command.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/defs.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/exec.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/i4b.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/iface.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/ip.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/ipcp.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/mp.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/physical.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/prompt.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/radius.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/route.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/server.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/tcp.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/tty.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/tun.c | 3 | ||||
| -rw-r--r-- | usr.sbin/ppp/udp.c | 3 |
20 files changed, 60 insertions, 0 deletions
diff --git a/usr.sbin/ppp/arp.c b/usr.sbin/ppp/arp.c index 9f370273b6a9..fbf38d01553b 100644 --- a/usr.sbin/ppp/arp.c +++ b/usr.sbin/ppp/arp.c @@ -38,6 +38,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/bundle.c b/usr.sbin/ppp/bundle.c index 072b5c384618..4992d4ce925f 100644 --- a/usr.sbin/ppp/bundle.c +++ b/usr.sbin/ppp/bundle.c @@ -40,6 +40,9 @@ #include <errno.h> #include <fcntl.h> #include <paths.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/chat.c b/usr.sbin/ppp/chat.c index 86fd40b375d1..d5f50b1814db 100644 --- a/usr.sbin/ppp/chat.c +++ b/usr.sbin/ppp/chat.c @@ -35,6 +35,9 @@ #include <errno.h> #include <fcntl.h> #include <paths.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c index 45e0bcc5a44a..276ecd8561f9 100644 --- a/usr.sbin/ppp/command.c +++ b/usr.sbin/ppp/command.c @@ -34,6 +34,9 @@ #include <errno.h> #include <fcntl.h> #include <paths.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/defs.c b/usr.sbin/ppp/defs.c index 740fc628d460..257b9ce5de0b 100644 --- a/usr.sbin/ppp/defs.c +++ b/usr.sbin/ppp/defs.c @@ -35,6 +35,9 @@ #include <ctype.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdlib.h> #include <string.h> #include <termios.h> diff --git a/usr.sbin/ppp/exec.c b/usr.sbin/ppp/exec.c index de9e6324d518..b7e6607f1bd0 100644 --- a/usr.sbin/ppp/exec.c +++ b/usr.sbin/ppp/exec.c @@ -32,6 +32,9 @@ #include <errno.h> #include <fcntl.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/i4b.c b/usr.sbin/ppp/i4b.c index 5e76c4fa1b48..14d34bb3e6b3 100644 --- a/usr.sbin/ppp/i4b.c +++ b/usr.sbin/ppp/i4b.c @@ -42,6 +42,9 @@ #include <i4b/i4b_ioctl.h> #include <i4b/i4b_rbch_ioctl.h> #endif +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/iface.c b/usr.sbin/ppp/iface.c index ec57e4bbbf80..f780ab02539c 100644 --- a/usr.sbin/ppp/iface.c +++ b/usr.sbin/ppp/iface.c @@ -38,6 +38,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <string.h> #include <stdio.h> #include <stdlib.h> diff --git a/usr.sbin/ppp/ip.c b/usr.sbin/ppp/ip.c index f1219d000d12..eb0b9edb90d9 100644 --- a/usr.sbin/ppp/ip.c +++ b/usr.sbin/ppp/ip.c @@ -37,6 +37,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <string.h> #include <termios.h> diff --git a/usr.sbin/ppp/ipcp.c b/usr.sbin/ppp/ipcp.c index 3efb315d8364..9fadaa463a79 100644 --- a/usr.sbin/ppp/ipcp.c +++ b/usr.sbin/ppp/ipcp.c @@ -36,6 +36,9 @@ #include <errno.h> #include <fcntl.h> #include <resolv.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdlib.h> #include <string.h> #include <termios.h> diff --git a/usr.sbin/ppp/mp.c b/usr.sbin/ppp/mp.c index 43c5829451c2..d145252a312d 100644 --- a/usr.sbin/ppp/mp.c +++ b/usr.sbin/ppp/mp.c @@ -37,6 +37,9 @@ #include <errno.h> #include <paths.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/usr.sbin/ppp/physical.c b/usr.sbin/ppp/physical.c index 2ee96eb7471f..290391b78b58 100644 --- a/usr.sbin/ppp/physical.c +++ b/usr.sbin/ppp/physical.c @@ -29,6 +29,9 @@ #include <errno.h> #include <fcntl.h> #include <paths.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/prompt.c b/usr.sbin/ppp/prompt.c index 5e39f00ff5fd..0ceadf0e2788 100644 --- a/usr.sbin/ppp/prompt.c +++ b/usr.sbin/ppp/prompt.c @@ -33,6 +33,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdarg.h> #include <stdio.h> #include <stdlib.h> diff --git a/usr.sbin/ppp/radius.c b/usr.sbin/ppp/radius.c index 366baec45944..a59342a85b84 100644 --- a/usr.sbin/ppp/radius.c +++ b/usr.sbin/ppp/radius.c @@ -36,6 +36,9 @@ #include <errno.h> #include <radlib.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/route.c b/usr.sbin/ppp/route.c index 688bcfe205b0..530832ba40bf 100644 --- a/usr.sbin/ppp/route.c +++ b/usr.sbin/ppp/route.c @@ -34,6 +34,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/server.c b/usr.sbin/ppp/server.c index 0f6cb513e1a2..2cf560a01991 100644 --- a/usr.sbin/ppp/server.c +++ b/usr.sbin/ppp/server.c @@ -33,6 +33,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <string.h> #include <sys/stat.h> diff --git a/usr.sbin/ppp/tcp.c b/usr.sbin/ppp/tcp.c index 7fd53a73ad62..04a1fffbadbb 100644 --- a/usr.sbin/ppp/tcp.c +++ b/usr.sbin/ppp/tcp.c @@ -33,6 +33,9 @@ #include <netdb.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/usr.sbin/ppp/tty.c b/usr.sbin/ppp/tty.c index 2ca27cc691f9..158fb5fa4336 100644 --- a/usr.sbin/ppp/tty.c +++ b/usr.sbin/ppp/tty.c @@ -34,6 +34,9 @@ #include <errno.h> #include <fcntl.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdlib.h> #include <string.h> #include <sysexits.h> diff --git a/usr.sbin/ppp/tun.c b/usr.sbin/ppp/tun.c index c35894a6c207..c45618f24c6a 100644 --- a/usr.sbin/ppp/tun.c +++ b/usr.sbin/ppp/tun.c @@ -39,6 +39,9 @@ #include <sys/un.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <string.h> #if defined(__OpenBSD__) || defined(__NetBSD__) #include <sys/ioctl.h> diff --git a/usr.sbin/ppp/udp.c b/usr.sbin/ppp/udp.c index 2a84eb6fd6a3..59f6ceae74fc 100644 --- a/usr.sbin/ppp/udp.c +++ b/usr.sbin/ppp/udp.c @@ -33,6 +33,9 @@ #include <netdb.h> #include <errno.h> +#ifdef __NetBSD__ +#include <signal.h> /* for `errno' ?!? */ +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> |
