diff options
author | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
commit | ff1eebe32bb029e20710e7ca1756911d42d46fbf (patch) | |
tree | 009ea3b0cb6633dd34add944159e34a4915266d3 /usr.bin/netstat | |
parent | 6c3b78320db59d66733755dd77e5d095dec46f61 (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/if.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c index 5733497e1aa..d1a1b6b73f8 100644 --- a/usr.bin/netstat/if.c +++ b/usr.bin/netstat/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.35 2003/06/03 02:56:13 millert Exp $ */ +/* $OpenBSD: if.c,v 1.36 2003/07/10 00:06:51 david Exp $ */ /* $NetBSD: if.c,v 1.16.4.2 1996/06/07 21:46:46 thorpej Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "from: @(#)if.c 8.2 (Berkeley) 2/21/94"; #else -static char *rcsid = "$OpenBSD: if.c,v 1.35 2003/06/03 02:56:13 millert Exp $"; +static char *rcsid = "$OpenBSD: if.c,v 1.36 2003/07/10 00:06:51 david Exp $"; #endif #endif /* not lint */ @@ -59,6 +59,7 @@ static char *rcsid = "$OpenBSD: if.c,v 1.35 2003/06/03 02:56:13 millert Exp $"; #include <limits.h> #include <signal.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |