summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/isa
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>1999-05-05 02:36:55 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>1999-05-05 02:36:55 +0000
commit94bb08dfbeb896f160ccd7370e4b0e634da7685e (patch)
tree828fbe1936021553acf2550b552b4eeaa1ffbba2 /sys/arch/hppa/isa
parent3392851351f833d407622034e04675468e6c86b6 (diff)
protect for multiple inclusions
Diffstat (limited to 'sys/arch/hppa/isa')
-rw-r--r--sys/arch/hppa/isa/isa_machdep.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa/isa/isa_machdep.h b/sys/arch/hppa/isa/isa_machdep.h
index cd4dc416a2e..77d81f39d0d 100644
--- a/sys/arch/hppa/isa/isa_machdep.h
+++ b/sys/arch/hppa/isa/isa_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: isa_machdep.h,v 1.1 1998/11/30 21:23:28 mickey Exp $ */
+/* $OpenBSD: isa_machdep.h,v 1.2 1999/05/05 02:36:54 todd Exp $ */
/*
* Copyright (c) 1998 Michael Shalayeff
@@ -30,6 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef _ISA_MACHDEP_H_
+#define _ISA_MACHDEP_H_
/*
* Types provided to machine-independent ISA code.
*/
@@ -58,3 +60,4 @@ struct hppa_isa_chipset {
#define isa_intr_check(c, i, t) \
(*(c)->ic_intr_check)((c)->ic_v, (i), (t))
+#endif /* _ISA_MACHDEP_H_ */