diff options
author | 2014-03-28 17:57:11 +0000 | |
---|---|---|
committer | 2014-03-28 17:57:11 +0000 | |
commit | 4bb7a4f6856b608b8ac93cd0e986e999e4099eb2 (patch) | |
tree | ea78578c648b918bc0b7f68baff7f3941801222a /sys/kern/subr_pool.c | |
parent | let's talk about shit (diff) | |
download | wireguard-openbsd-4bb7a4f6856b608b8ac93cd0e986e999e4099eb2.tar.xz wireguard-openbsd-4bb7a4f6856b608b8ac93cd0e986e999e4099eb2.zip |
Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of
<uvm/uvm.h> if possible and remove double inclusions.
ok beck@, mlarkin@, deraadt@
Diffstat (limited to 'sys/kern/subr_pool.c')
-rw-r--r-- | sys/kern/subr_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index 0be2df00543..2fd1e897cfe 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.124 2013/11/05 03:28:45 dlg Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.125 2014/03/28 17:57:11 mpi Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -41,7 +41,7 @@ #include <sys/syslog.h> #include <sys/sysctl.h> -#include <uvm/uvm.h> +#include <uvm/uvm_extern.h> #include <dev/rndvar.h> /* |