diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-06-16 14:38:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-06-16 14:38:37 +0000 |
commit | 552b9d4279039986bd175e24c5994df22688c1a6 (patch) | |
tree | 1577296eaaaa400dd41ff3800229c6b7da0d9c72 /sys/dev/isa | |
parent | 2810ed462ee6cd7f96afc43b988e660da74da548 (diff) |
On the off chance that something that is NOT the kernel includes those
files...
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/isavar.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h index a3c807842dd..0e29d212e78 100644 --- a/sys/dev/isa/isavar.h +++ b/sys/dev/isa/isavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isavar.h,v 1.34 1999/01/20 18:21:00 niklas Exp $ */ +/* $OpenBSD: isavar.h,v 1.35 1999/06/16 14:38:35 espie Exp $ */ /* $NetBSD: isavar.h,v 1.26 1997/06/06 23:43:57 thorpej Exp $ */ /*- @@ -122,28 +122,28 @@ */ struct isabus_attach_args; -#if (alpha + amiga + i386 + arc + wgrisc + powerpc + hppa != 1) +#if (__alpha__ + __amiga__ + __i386__ + __arc__ + __wgrisc__ + __powerpc__ + __hppa__ != 1) #error "COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE." #endif -#ifdef alpha +#ifdef __alpha__ #include <alpha/isa/isa_machdep.h> #endif -#ifdef amiga +#ifdef __amiga__ #include <amiga/isa/isa_machdep.h> #endif -#ifdef i386 +#ifdef __i386__ #include <i386/isa/isa_machdep.h> #endif -#ifdef arc +#ifdef __arc__ #include <arc/isa/isa_machdep.h> #endif -#ifdef wgrisc +#ifdef __wgrisc__ #include <wgrisc/isa/isa_machdep.h> #endif -#ifdef powerpc +#ifdef __powerpc__ #include <powerpc/isa/isa_machdep.h> #endif -#ifdef hppa +#ifdef __hppa__ #include <hppa/isa/isa_machdep.h> #endif @@ -155,10 +155,10 @@ struct isabus_attach_args; */ struct isapnp_softc; -#if (i386 != 1) +#if (__i386__ != 1) ERROR: COMPILING ISAPNP FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #endif -#if i386 +#if __i386__ #include <i386/isa/isapnp_machdep.h> #endif #endif /* NISAPNP */ |