summaryrefslogtreecommitdiff
path: root/sys/dev/eisa
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-06-16 14:38:37 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-06-16 14:38:37 +0000
commit552b9d4279039986bd175e24c5994df22688c1a6 (patch)
tree1577296eaaaa400dd41ff3800229c6b7da0d9c72 /sys/dev/eisa
parent2810ed462ee6cd7f96afc43b988e660da74da548 (diff)
On the off chance that something that is NOT the kernel includes those
files...
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r--sys/dev/eisa/eisavar.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/eisa/eisavar.h b/sys/dev/eisa/eisavar.h
index bf68c40d9fb..9451b2c30be 100644
--- a/sys/dev/eisa/eisavar.h
+++ b/sys/dev/eisa/eisavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: eisavar.h,v 1.9 1998/10/29 22:45:30 mickey Exp $ */
+/* $OpenBSD: eisavar.h,v 1.10 1999/06/16 14:38:35 espie Exp $ */
/* $NetBSD: eisavar.h,v 1.11 1997/06/06 23:30:07 thorpej Exp $ */
/*
@@ -54,19 +54,19 @@ struct eisabus_attach_args;
/*
* Machine-dependent definitions.
*/
-#if (alpha + i386 + arc + hppa != 1)
+#if (__alpha__ + __i386__ + __arc__ + __hppa__ != 1)
ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE.
#endif
-#if alpha
+#if __alpha__
#include <alpha/eisa/eisa_machdep.h>
#endif
-#if i386
+#if __i386__
#include <i386/eisa/eisa_machdep.h>
#endif
-#if arc
+#if __arc__
#include <arc/eisa/eisa_machdep.h>
#endif
-#if hppa
+#if __hppa__
#include <hppa/eisa/eisa_machdep.h>
#endif