diff options
author | brian <brian@FreeBSD.org> | 1999-09-20 07:36:46 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-09-20 07:36:46 +0000 |
commit | 463e41d5f8719df872df75b8d87df6dce81535e6 (patch) | |
tree | 28be0582e6f5d177a918f4016341fba1d48d96ab /usr.sbin/ppp/mp.c | |
parent | 18c36231b722aae6426f96c058c9854857da3cd1 (diff) | |
download | FreeBSD-src-463e41d5f8719df872df75b8d87df6dce81535e6.zip FreeBSD-src-463e41d5f8719df872df75b8d87df6dce81535e6.tar.gz |
NetBSD has moved ``extern int errno;'' to signal.h :-/
Submitted by: Kazuyoshi Kato <kazk@yyy.or.jp>
Diffstat (limited to 'usr.sbin/ppp/mp.c')
-rw-r--r-- | usr.sbin/ppp/mp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/ppp/mp.c b/usr.sbin/ppp/mp.c index 43c5829..d145252 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> |