diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-28 17:57:12 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-28 17:57:12 +0000 |
commit | 3fd91d9dae92a0666a963dbc0a83105ce92df276 (patch) | |
tree | 5fe87d25de786dadf43e9116f3e833fba7a97e3d /sys/kern/kern_malloc_debug.c | |
parent | 5f53fe91d0fb705a04a73c507e8fd68083cf7d29 (diff) |
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 |