aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/tcpdrop
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2011-06-06 17:07:38 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2011-06-06 17:07:38 +0000
commitb3a1dfb7e1cf242df2a1b299544f265a0d28a2c5 (patch)
treee2b36a7b11cc4886168d051bfeaca04a062b8923 /usr.sbin/tcpdrop
parent54e397e566131a0385e4642d85bf927e05235950 (diff)
downloadsrc-b3a1dfb7e1cf242df2a1b299544f265a0d28a2c5.tar.gz
src-b3a1dfb7e1cf242df2a1b299544f265a0d28a2c5.zip
Include param.h for CACHE_LINE_SIZE to unbreak the build.
Notes
Notes: svn path=/head/; revision=222765
Diffstat (limited to 'usr.sbin/tcpdrop')
-rw-r--r--usr.sbin/tcpdrop/tcpdrop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/tcpdrop/tcpdrop.c b/usr.sbin/tcpdrop/tcpdrop.c
index 6aae85ccb4d1..dce6c6d4be9d 100644
--- a/usr.sbin/tcpdrop/tcpdrop.c
+++ b/usr.sbin/tcpdrop/tcpdrop.c
@@ -20,12 +20,13 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/sysctl.h>
-#include <netinet/in.h>
+#include <netinet/in.h>
#include <netinet/in_pcb.h>
#define TCPSTATES
#include <netinet/tcp_fsm.h>