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 9f370273b6a9d..fbf38d01553bb 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 072b5c3846180..4992d4ce925fd 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 86fd40b375d17..d5f50b1814db7 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 45e0bcc5a44a2..276ecd8561f9e 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 740fc628d4608..257b9ce5de0bc 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 de9e6324d5182..b7e6607f1bd06 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 5e76c4fa1b482..14d34bb3e6b31 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 ec57e4bbbf808..f780ab02539c5 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 f1219d000d122..eb0b9edb90d93 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 3efb315d83643..9fadaa463a792 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 43c5829451c24..d145252a312d8 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 2ee96eb7471f8..290391b78b589 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 5e39f00ff5fdb..0ceadf0e27885 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 366baec45944d..a59342a85b847 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 688bcfe205b05..530832ba40bf4 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 0f6cb513e1a21..2cf560a019912 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 7fd53a73ad62f..04a1fffbadbb1 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 2ca27cc691f90..158fb5fa43362 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 c35894a6c2076..c45618f24c6a2 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 2a84eb6fd6a36..59f6ceae74fcf 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> |
