diff options
author | imp <imp@FreeBSD.org> | 2000-04-14 06:49:16 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-04-14 06:49:16 +0000 |
commit | 1e1b2fb024dccc504ac3a53912135b0e1dd757c5 (patch) | |
tree | 7eaf7368683f61e18e8813b0a6ae8a6990ab3000 /usr.sbin/IPXrouted | |
parent | 4721d7ef435f4d79e92d8d98ba9b645bb25993fb (diff) | |
download | FreeBSD-src-1e1b2fb024dccc504ac3a53912135b0e1dd757c5.zip FreeBSD-src-1e1b2fb024dccc504ac3a53912135b0e1dd757c5.tar.gz |
remove extern int errno; include errno.h
Diffstat (limited to 'usr.sbin/IPXrouted')
-rw-r--r-- | usr.sbin/IPXrouted/startup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/IPXrouted/startup.c b/usr.sbin/IPXrouted/startup.c index db443ab..1740a88 100644 --- a/usr.sbin/IPXrouted/startup.c +++ b/usr.sbin/IPXrouted/startup.c @@ -55,6 +55,7 @@ static char sccsid[] = "@(#)startup.c 8.1 (Berkeley) 6/5/93"; #include <net/if.h> #include <net/if_dl.h> +#include <errno.h> #include <nlist.h> #include <stdlib.h> @@ -68,7 +69,6 @@ void quit(s) char *s; { - extern int errno; int sverrno = errno; (void) fprintf(stderr, "IPXroute: "); |