summaryrefslogtreecommitdiff
path: root/sys/arch/mips/include/ptrace.h
diff options
context:
space:
mode:
authorimp <imp@cvs.openbsd.org>1999-01-27 04:46:07 +0000
committerimp <imp@cvs.openbsd.org>1999-01-27 04:46:07 +0000
commitcc0a7779d1635c38e681eea667b0c3fd88dc24db (patch)
tree646a4589b70d2b23e13514cc15c3968362380576 /sys/arch/mips/include/ptrace.h
parent9fee6a7f3ec81de937c6277c7777d70e8280ea80 (diff)
Protect against multiple includes and regularize cpp symbols used
Diffstat (limited to 'sys/arch/mips/include/ptrace.h')
-rw-r--r--sys/arch/mips/include/ptrace.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/mips/include/ptrace.h b/sys/arch/mips/include/ptrace.h
index ee03e08d26b..cb92fb71dbc 100644
--- a/sys/arch/mips/include/ptrace.h
+++ b/sys/arch/mips/include/ptrace.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ptrace.h,v 1.1 1998/01/28 11:14:52 pefo Exp $ */
+/* $OpenBSD: ptrace.h,v 1.2 1999/01/27 04:46:06 imp Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -35,6 +35,9 @@
* from: @(#)ptrace.h 8.1 (Berkeley) 6/10/93
*/
+#ifndef _MIPS_PTRACE_H_
+#define _MIPS_PTRACE_H_
+
/*
* Machine dependent trace commands.
*
@@ -43,3 +46,5 @@
#define PT_GETREGS (PT_FIRSTMACH+0)
#define PT_SETREGS (PT_FIRSTMACH+1)
#define PT_STEP (PT_FIRSTMACH+2)
+
+#endif /* !_MIPS_PTRACE_H_ */