diff options
author | 1999-01-20 18:21:00 +0000 | |
---|---|---|
committer | 1999-01-20 18:21:00 +0000 | |
commit | e3857f464829bc91597121337620ae984c85c88c (patch) | |
tree | 03cb6a7f582d88b5d69644df9ab7dd7aa16d3147 /sys | |
parent | Recurse when we've switched state via LoginDone(). If we've (diff) | |
download | wireguard-openbsd-e3857f464829bc91597121337620ae984c85c88c.tar.xz wireguard-openbsd-e3857f464829bc91597121337620ae984c85c88c.zip |
Use #error instead of C syntax error to report an inconsistency in defines
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/isavar.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h index 4cc2045234f..a3c807842dd 100644 --- a/sys/dev/isa/isavar.h +++ b/sys/dev/isa/isavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isavar.h,v 1.33 1999/01/16 08:28:30 mickey Exp $ */ +/* $OpenBSD: isavar.h,v 1.34 1999/01/20 18:21:00 niklas 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) -ERROR: COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. +#if (alpha + amiga + i386 + arc + wgrisc + powerpc + hppa != 1) +#error "COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE." #endif -#if alpha +#ifdef alpha #include <alpha/isa/isa_machdep.h> #endif -#if amiga +#ifdef amiga #include <amiga/isa/isa_machdep.h> #endif -#if i386 +#ifdef i386 #include <i386/isa/isa_machdep.h> #endif -#if arc +#ifdef arc #include <arc/isa/isa_machdep.h> #endif -#if wgrisc +#ifdef wgrisc #include <wgrisc/isa/isa_machdep.h> #endif -#if powerpc +#ifdef powerpc #include <powerpc/isa/isa_machdep.h> #endif -#if hppa +#ifdef hppa #include <hppa/isa/isa_machdep.h> #endif |