diff options
Diffstat (limited to 'sys/arch/mvme88k/include/ptrace.h')
-rw-r--r-- | sys/arch/mvme88k/include/ptrace.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/include/ptrace.h b/sys/arch/mvme88k/include/ptrace.h index 347494aaa76..73648c842de 100644 --- a/sys/arch/mvme88k/include/ptrace.h +++ b/sys/arch/mvme88k/include/ptrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ptrace.h,v 1.4 1999/02/09 06:36:27 smurph Exp $ */ +/* $OpenBSD: ptrace.h,v 1.5 2001/01/14 20:25:24 smurph Exp $ */ /* * Copyright (c) 1999, Steve Murphree, Jr. * Copyright (c) 1992, 1993 @@ -44,15 +44,17 @@ * @(#)ptrace.h 8.1 (Berkeley) 6/11/93 * * from: Header: ptrace.h,v 1.6 92/11/26 02:04:43 torek Exp (LBL) - * $Id: ptrace.h,v 1.4 1999/02/09 06:36:27 smurph Exp $ + * $Id: ptrace.h,v 1.5 2001/01/14 20:25:24 smurph Exp $ */ /* * m88k-dependent ptrace definitions. */ - +#ifndef __MACHINE_PTRACE_H__ +#define __MACHINE_PTRACE_H__ #define PT_STEP (PT_FIRSTMACH + 0) #define PT_GETREGS (PT_FIRSTMACH + 1) #define PT_SETREGS (PT_FIRSTMACH + 2) #define PT_GETFPREGS (PT_FIRSTMACH + 3) #define PT_SETFPREGS (PT_FIRSTMACH + 4) +#endif __MACHINE_PTRACE_H__ |