diff options
author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2000-05-01 20:19:44 +0000 |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2000-05-01 20:19:44 +0000 |
commit | f1fb54a2f53e17c35de6d3191a83da905698262c (patch) | |
tree | 5c9fd7154e2d861ecac1697caf87917da74bdd88 /sbin | |
parent | 2ec1f7719069065c53309d2a1af1f2d583c2561b (diff) | |
download | src-f1fb54a2f53e17c35de6d3191a83da905698262c.tar.gz src-f1fb54a2f53e17c35de6d3191a83da905698262c.zip |
Remove unused include, and place sys includes at top, which enabled
us to remove this include.
Notes
Notes:
svn path=/head/; revision=59870
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ipfw/ipfw.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/ipfw/ipfw.c b/sbin/ipfw/ipfw.c index d01b6e9614a2..290bb9aa34af 100644 --- a/sbin/ipfw/ipfw.c +++ b/sbin/ipfw/ipfw.c @@ -24,7 +24,8 @@ static const char rcsid[] = #endif /* not lint */ -#include <sys/types.h> +#include <sys/param.h> +#include <sys/mbuf.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/sysctl.h> @@ -53,8 +54,6 @@ static const char rcsid[] = #include <netinet/ip_icmp.h> #include <netinet/ip_fw.h> #include <net/route.h> /* def. of struct route */ -#include <sys/param.h> -#include <sys/mbuf.h> #include <netinet/ip_dummynet.h> #include <netinet/tcp.h> #include <arpa/inet.h> |