diff options
| author | 2010-04-20 22:05:41 +0000 | |
|---|---|---|
| committer | 2010-04-20 22:05:41 +0000 | |
| commit | 9b074ffaba6c82e08722cbd87560a0334d22cc9f (patch) | |
| tree | afa9a20d9795b601648c61a33fc2fca8e79185c4 /sys/net/if_pflow.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/net/if_pflow.c')
| -rw-r--r-- | sys/net/if_pflow.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/if_pflow.c b/sys/net/if_pflow.c index dfb386f7c41..9b513c8202a 100644 --- a/sys/net/if_pflow.c +++ b/sys/net/if_pflow.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflow.c,v 1.12 2010/01/12 02:47:07 claudio Exp $ */ +/* $OpenBSD: if_pflow.c,v 1.13 2010/04/20 22:05:43 tedu Exp $ */ /* * Copyright (c) 2008 Henning Brauer <henning@openbsd.org> @@ -20,10 +20,12 @@ #include <sys/types.h> #include <sys/malloc.h> #include <sys/param.h> +#include <sys/systm.h> #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <sys/kernel.h> +#include <sys/proc.h> #include <sys/sysctl.h> #include <dev/rndvar.h> |
