diff options
author | dg <dg@FreeBSD.org> | 1996-03-11 13:01:12 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1996-03-11 13:01:12 +0000 |
commit | 42390683e5de322e34b244ea03ffa0e6e1b0cb0f (patch) | |
tree | ca94b00405c6511983ad57036a8a9979f99c3925 | |
parent | 003979654a13a39afb33369ee6b75cefd950ae9f (diff) | |
download | FreeBSD-src-42390683e5de322e34b244ea03ffa0e6e1b0cb0f.zip FreeBSD-src-42390683e5de322e34b244ea03ffa0e6e1b0cb0f.tar.gz |
Move #include of queue.h before #include of socketvar.h in preparation for
struct socket changes.
-rw-r--r-- | usr.bin/netstat/inet.c | 2 | ||||
-rw-r--r-- | usr.bin/netstat/ipx.c | 1 | ||||
-rw-r--r-- | usr.bin/netstat/mroute.c | 1 | ||||
-rw-r--r-- | usr.bin/netstat/unix.c | 1 | ||||
-rw-r--r-- | usr.bin/systat/netcmds.c | 2 | ||||
-rw-r--r-- | usr.bin/systat/netstat.c | 2 |
6 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 11ac1ce..0a2848e 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -36,11 +36,11 @@ static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95"; #endif /* not lint */ #include <sys/param.h> +#include <sys/queue.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/mbuf.h> #include <sys/protosw.h> -#include <sys/queue.h> #include <net/route.h> #include <netinet/in.h> diff --git a/usr.bin/netstat/ipx.c b/usr.bin/netstat/ipx.c index 849743c..2355d50 100644 --- a/usr.bin/netstat/ipx.c +++ b/usr.bin/netstat/ipx.c @@ -36,6 +36,7 @@ static char sccsid[] = "@(#)ns.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #include <sys/param.h> +#include <sys/queue.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/mbuf.h> diff --git a/usr.bin/netstat/mroute.c b/usr.bin/netstat/mroute.c index 6aea740..92514e9 100644 --- a/usr.bin/netstat/mroute.c +++ b/usr.bin/netstat/mroute.c @@ -44,6 +44,7 @@ */ #include <sys/param.h> +#include <sys/queue.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/protosw.h> diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c index 0310b68..4095e1b 100644 --- a/usr.bin/netstat/unix.c +++ b/usr.bin/netstat/unix.c @@ -40,6 +40,7 @@ static char sccsid[] = "@(#)unix.c 8.1 (Berkeley) 6/6/93"; */ #include <kvm.h> #include <sys/param.h> +#include <sys/queue.h> #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> diff --git a/usr.bin/systat/netcmds.c b/usr.bin/systat/netcmds.c index 584b780..922fbcd 100644 --- a/usr.bin/systat/netcmds.c +++ b/usr.bin/systat/netcmds.c @@ -39,11 +39,11 @@ static char sccsid[] = "@(#)netcmds.c 8.1 (Berkeley) 6/6/93"; * Common network command support routines. */ #include <sys/param.h> +#include <sys/queue.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/mbuf.h> #include <sys/protosw.h> -#include <sys/queue.h> #include <net/route.h> #include <netinet/in.h> diff --git a/usr.bin/systat/netstat.c b/usr.bin/systat/netstat.c index 3e8ec4d..9e3eff7 100644 --- a/usr.bin/systat/netstat.c +++ b/usr.bin/systat/netstat.c @@ -39,11 +39,11 @@ static char sccsid[] = "@(#)netstat.c 8.1 (Berkeley) 6/6/93"; * netstat */ #include <sys/param.h> +#include <sys/queue.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/mbuf.h> #include <sys/protosw.h> -#include <sys/queue.h> #include <netinet/in.h> #include <net/route.h> |