summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2007-09-01 18:49:29 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2007-09-01 18:49:29 +0000
commitec24840b6666724b7c844cbdfcb46b1412511315 (patch)
treed6ad939644740d1cc8d0764162acbc586cb560d7 /sys/netinet/tcp_subr.c
parentf76ad80f3ec6a9f21691f0ed69bf6c5a2991de17 (diff)
since the
MGET* macros were changed to function calls, there wasn't any need for the pool declarations and the inclusion of pool.h From: tbert <bret.lambert@gmail.com>
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index a51f5251b44..7723d0b6170 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_subr.c,v 1.98 2007/06/25 12:17:43 markus Exp $ */
+/* $OpenBSD: tcp_subr.c,v 1.99 2007/09/01 18:49:28 henning Exp $ */
/* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */
/*
@@ -76,6 +76,7 @@
#include <sys/socketvar.h>
#include <sys/protosw.h>
#include <sys/kernel.h>
+#include <sys/pool.h>
#include <net/route.h>
#include <net/if.h>