diff options
author | 1996-05-12 08:45:38 +0000 | |
---|---|---|
committer | 1996-05-12 08:45:38 +0000 | |
commit | cbbdc834dce2d966bb6f42c921b808480759b995 (patch) | |
tree | 98996ded216eed93bccebbe0b269391cbfde7d80 | |
parent | new extension: the $CVSROOT/CVSROOT/options file (if it exists) supports: (diff) | |
download | wireguard-openbsd-cbbdc834dce2d966bb6f42c921b808480759b995.tar.xz wireguard-openbsd-cbbdc834dce2d966bb6f42c921b808480759b995.zip |
pull in pica machdep isa header if pica
-rw-r--r-- | sys/dev/isa/isavar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h index 15433366f20..02697e40294 100644 --- a/sys/dev/isa/isavar.h +++ b/sys/dev/isa/isavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isavar.h,v 1.10 1996/05/10 12:37:45 deraadt Exp $ */ +/* $OpenBSD: isavar.h,v 1.11 1996/05/12 08:45:38 pefo Exp $ */ /* $NetBSD: isavar.h,v 1.22 1996/05/05 01:14:14 thorpej Exp $ */ /* @@ -52,7 +52,7 @@ */ struct isabus_attach_args; -#if (alpha + amiga + i386 != 1) +#if (alpha + amiga + i386 + pica != 1) ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #endif #if alpha @@ -64,6 +64,9 @@ ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #if i386 #include <i386/isa/isa_machdep.h> #endif +#if pica +#include <pica/isa/isa_machdep.h> +#endif /* * ISA bus attach arguments |