diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-08 22:26:01 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-08 22:26:01 +0000 |
commit | cf0f642f999d34504dc0dad9aeb00e1d81499dc8 (patch) | |
tree | 8e32d87e88f9fa26adbfe569b708945bc63cab73 /sys | |
parent | b93d300700fbfc226e6dd5b00615f52d48335e7c (diff) |
Include <machine/asm_macro.h>, reorder include files list.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/pmap.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c index 19c7ec2b081..02f98998049 100644 --- a/sys/arch/mvme88k/mvme88k/pmap.c +++ b/sys/arch/mvme88k/mvme88k/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.21 2001/03/07 23:52:33 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.22 2001/03/08 22:26:00 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * All rights reserved. @@ -51,22 +51,24 @@ /*#define DEBUG 1*/ #include <sys/types.h> -#include <machine/board.h> #include <sys/param.h> -#include <machine/m882xx.h> /* CMMU stuff */ +#include <sys/simplelock.h> +#include <sys/proc.h> +#include <sys/malloc.h> +#include <sys/msgbuf.h> +#include <sys/user.h> + #include <vm/vm.h> #include <vm/vm_kern.h> /* vm/vm_kern.h */ #if defined(UVM) #include <uvm/uvm.h> #endif -#include <sys/simplelock.h> -#include <sys/proc.h> -#include <sys/malloc.h> -#include <sys/msgbuf.h> -#include <sys/user.h> +#include <machine/asm_macro.h> #include <machine/assert.h> +#include <machine/board.h> #include <machine/cpu_number.h> +#include <machine/m882xx.h> /* CMMU stuff */ #include <machine/pmap_table.h> #include <mvme88k/dev/pcctworeg.h> |