diff options
author | mjacob <mjacob@FreeBSD.org> | 2001-07-05 06:13:44 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2001-07-05 06:13:44 +0000 |
commit | 1bbbafcc7fb3a7168cfa4ca14883c2066cb64978 (patch) | |
tree | 3caf97fd841f3ff7670eccb1c35beb97a4e79c96 /sys/vm | |
parent | c1d8c6e04fd04becdb2d6c2589e340377383e366 (diff) | |
download | FreeBSD-src-1bbbafcc7fb3a7168cfa4ca14883c2066cb64978.zip FreeBSD-src-1bbbafcc7fb3a7168cfa4ca14883c2066cb64978.tar.gz |
Apply field bandages to the includes so compiles happen on alpha.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_zeroidle.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/vm/vm_zeroidle.c b/sys/vm/vm_zeroidle.c index c1361de..1629765 100644 --- a/sys/vm/vm_zeroidle.c +++ b/sys/vm/vm_zeroidle.c @@ -10,12 +10,14 @@ * $FreeBSD$ */ +#ifndef __alpha__ #include "opt_npx.h" #ifdef PC98 #include "opt_pc98.h" #endif #include "opt_reset.h" #include "opt_isa.h" +#endif #include <sys/param.h> #include <sys/systm.h> @@ -35,8 +37,10 @@ #include <machine/cpu.h> #include <machine/md_var.h> #include <machine/pcb.h> +#ifndef __alpha__ #include <machine/pcb_ext.h> #include <machine/vm86.h> +#endif #include <vm/vm.h> #include <vm/vm_param.h> @@ -48,11 +52,13 @@ #include <sys/user.h> +#ifndef __alpha__ #ifdef PC98 #include <pc98/pc98/pc98.h> #else #include <i386/isa/isa.h> #endif +#endif SYSCTL_DECL(_vm_stats_misc); |