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_debug.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_debug.c')
-rw-r--r-- | sys/kern/kern_malloc_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_malloc_debug.c b/sys/kern/kern_malloc_debug.c index 046af234b4f..2bce1883c18 100644 --- a/sys/kern/kern_malloc_debug.c +++ b/sys/kern/kern_malloc_debug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc_debug.c,v 1.32 2013/08/08 23:25:06 syl Exp $ */ +/* $OpenBSD: kern_malloc_debug.c,v 1.33 2014/03/28 17:57:11 mpi Exp $ */ /* * Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org> @@ -57,7 +57,7 @@ #include <sys/systm.h> #include <sys/pool.h> -#include <uvm/uvm.h> +#include <uvm/uvm_extern.h> /* * debug_malloc_type and debug_malloc_size define the type and size of |