summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include
diff options
context:
space:
mode:
authorPeter Valchev <pvalchev@cvs.openbsd.org>2002-10-10 17:00:58 +0000
committerPeter Valchev <pvalchev@cvs.openbsd.org>2002-10-10 17:00:58 +0000
commitede6017f3856687c8160c315b569ae3846cfaf34 (patch)
treedf68f3f03343540df09650be41644923d688aa73 /sys/arch/alpha/include
parent11afc73e17f33a5e5d5d0ee859987b9f66e84f75 (diff)
protect against multiple inclusion; pointed out by naddy, miod ok
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r--sys/arch/alpha/include/pcb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/alpha/include/pcb.h b/sys/arch/alpha/include/pcb.h
index b91bdf22438..d3114d427b9 100644
--- a/sys/arch/alpha/include/pcb.h
+++ b/sys/arch/alpha/include/pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcb.h,v 1.6 2002/04/28 20:55:14 pvalchev Exp $ */
+/* $OpenBSD: pcb.h,v 1.7 2002/10/10 17:00:57 pvalchev Exp $ */
/* $NetBSD: pcb.h,v 1.5 1996/11/13 22:21:00 cgd Exp $ */
/*
@@ -28,6 +28,9 @@
* rights to redistribute these changes.
*/
+#ifndef _ALPHA_PCB_H_
+#define _ALPHA_PCB_H_
+
#include <machine/frame.h>
#include <machine/reg.h>
@@ -68,3 +71,5 @@ struct md_coredump {
#ifdef _KERNEL
void savectx(struct pcb *);
#endif
+
+#endif /* _ALPHA_PCB_H_ */