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/kern_malloc.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/kern_malloc.c')
-rw-r--r-- | sys/kern/kern_malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 5afe208f3b9..c583d69e9fc 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc.c,v 1.104 2014/01/21 01:48:44 tedu Exp $ */ +/* $OpenBSD: kern_malloc.c,v 1.105 2014/03/28 17:57:11 mpi Exp $ */ /* $NetBSD: kern_malloc.c,v 1.15.4.2 1996/06/13 17:10:56 cgd Exp $ */ /* @@ -43,7 +43,7 @@ #include <dev/rndvar.h> -#include <uvm/uvm.h> +#include <uvm/uvm_extern.h> static __inline__ long BUCKETINDX(size_t sz) { |