diff options
| author | 2010-04-20 22:05:41 +0000 | |
|---|---|---|
| committer | 2010-04-20 22:05:41 +0000 | |
| commit | 9b074ffaba6c82e08722cbd87560a0334d22cc9f (patch) | |
| tree | afa9a20d9795b601648c61a33fc2fca8e79185c4 /sys/netinet/udp_usrreq.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/netinet/udp_usrreq.c')
| -rw-r--r-- | sys/netinet/udp_usrreq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 1df5ac82c8c..831ff59126a 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.133 2010/03/11 00:24:58 sthen Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.134 2010/04/20 22:05:43 tedu Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -74,6 +74,7 @@ #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/proc.h> #include <sys/sysctl.h> #include <net/if.h> |
