diff options
author | 2010-04-20 22:05:41 +0000 | |
---|---|---|
committer | 2010-04-20 22:05:41 +0000 | |
commit | 9b074ffaba6c82e08722cbd87560a0334d22cc9f (patch) | |
tree | afa9a20d9795b601648c61a33fc2fca8e79185c4 /sys/netinet6/raw_ip6.c | |
parent | fix trailing slashes in filenames behavior by *not* fixing it in systrace. (diff) | |
download | wireguard-openbsd-9b074ffaba6c82e08722cbd87560a0334d22cc9f.tar.xz wireguard-openbsd-9b074ffaba6c82e08722cbd87560a0334d22cc9f.zip |
remove proc.h include from uvm_map.h. This has far reaching effects, as
sysctl.h was reliant on this particular include, and many drivers included
sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed.
ok deraadt
Diffstat (limited to 'sys/netinet6/raw_ip6.c')
-rw-r--r-- | sys/netinet6/raw_ip6.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index ec91971dd13..03fcef73030 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ip6.c,v 1.39 2009/06/05 00:05:22 claudio Exp $ */ +/* $OpenBSD: raw_ip6.c,v 1.40 2010/04/20 22:05:44 tedu Exp $ */ /* $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $ */ /* @@ -69,6 +69,7 @@ #include <sys/socketvar.h> #include <sys/errno.h> #include <sys/systm.h> +#include <sys/proc.h> #include <sys/sysctl.h> #include <net/if.h> |