diff options
author | wollman <wollman@FreeBSD.org> | 1996-10-28 18:56:44 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-10-28 18:56:44 +0000 |
commit | cd2ff97ceed98bfea914f0b9efea6c84cd0d6039 (patch) | |
tree | ea95299126f97aed82cdd128ec9aba9f69c81f55 /usr.bin/netstat/route.c | |
parent | 2d0e4daee001a3bcd6ecba5cfa7b61515d0933ae (diff) | |
download | FreeBSD-src-cd2ff97ceed98bfea914f0b9efea6c84cd0d6039.zip FreeBSD-src-cd2ff97ceed98bfea914f0b9efea6c84cd0d6039.tar.gz |
Eliminate unnecessary include of <sys/mbuf.h>. PCBs aren't stored in mbufs
any more.
Diffstat (limited to 'usr.bin/netstat/route.c')
-rw-r--r-- | usr.bin/netstat/route.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index 6a50c71..74bbdde 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -36,13 +36,12 @@ static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: route.c,v 1.19 1996/09/05 23:34:09 julian Exp $"; + "$Id: route.c,v 1.20 1996/10/09 18:19:07 wollman Exp $"; #endif /* not lint */ #include <sys/param.h> #include <sys/protosw.h> #include <sys/socket.h> -#include <sys/mbuf.h> #include <net/if.h> #include <net/if_dl.h> |