summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbenno <benno@FreeBSD.org>2001-07-15 04:11:51 +0000
committerbenno <benno@FreeBSD.org>2001-07-15 04:11:51 +0000
commitb923e2f3e619be3ca05d77fded500e013d405179 (patch)
tree4563f137d68a93e72217c3eaf8428a490e7f5b1a
parent8575cc9f24e25bfdba4a990506dd4dc4d3c20fef (diff)
downloadFreeBSD-src-b923e2f3e619be3ca05d77fded500e013d405179.zip
FreeBSD-src-b923e2f3e619be3ca05d77fded500e013d405179.tar.gz
The i386-specific includes in this file were "fixed" by bracketing them with
#ifndef __alpha__. Fix this for the rest of the world by turning it into #ifdef __i386__. Reviewed by: obrien
-rw-r--r--sys/vm/vm_zeroidle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_zeroidle.c b/sys/vm/vm_zeroidle.c
index 1629765..69a1938 100644
--- a/sys/vm/vm_zeroidle.c
+++ b/sys/vm/vm_zeroidle.c
@@ -10,7 +10,7 @@
* $FreeBSD$
*/
-#ifndef __alpha__
+#ifdef __i386__
#include "opt_npx.h"
#ifdef PC98
#include "opt_pc98.h"
@@ -37,7 +37,7 @@
#include <machine/cpu.h>
#include <machine/md_var.h>
#include <machine/pcb.h>
-#ifndef __alpha__
+#ifdef __i386__
#include <machine/pcb_ext.h>
#include <machine/vm86.h>
#endif
@@ -52,7 +52,7 @@
#include <sys/user.h>
-#ifndef __alpha__
+#ifdef __i386__
#ifdef PC98
#include <pc98/pc98/pc98.h>
#else
OpenPOWER on IntegriCloud