diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-09-11 21:17:53 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-09-11 21:17:53 +0000 |
commit | 2ecd0fbc33003f6ec5358565cd08bc2d4b275345 (patch) | |
tree | 8df73b815bb3b9b87f0dfe8145a1d9852973c04f /sys | |
parent | 798c8a9f3a982bd638c58621e753958854b5d470 (diff) |
include pmap.h earlier, so MD pmap structures may be
kept all together in the pmap.h file w/o spreading
all over MD includes.
verified on most architectures.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm.h b/sys/vm/vm.h index 07c188f3043..ced335cebf4 100644 --- a/sys/vm/vm.h +++ b/sys/vm/vm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vm.h,v 1.6 1998/03/01 00:38:01 niklas Exp $ */ +/* $OpenBSD: vm.h,v 1.7 1998/09/11 21:17:52 mickey Exp $ */ /* $NetBSD: vm.h,v 1.13 1994/06/29 06:47:52 cgd Exp $ */ /* @@ -76,10 +76,10 @@ typedef struct lock *lock_t; #include <vm/vm_param.h> #include <sys/lock.h> #include <vm/vm_prot.h> +#include <vm/pmap.h> #include <vm/vm_inherit.h> #include <vm/vm_map.h> #include <vm/vm_object.h> -#include <vm/pmap.h> #include <vm/vm_extern.h> /* |