diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-14 07:25:17 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-14 07:25:17 +0000 |
commit | b4f357fe3405da5a152e948d5dffda3022d03d3d (patch) | |
tree | 65267c73ca1419e75570cda34c9edb0dc05008c8 /sys | |
parent | 04fedd11d4f8d105e9692ab8e69613fce1d0e66e (diff) |
Do not expose kernel prototypes to userland.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/include/ptrace.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/include/ptrace.h b/sys/arch/mvme88k/include/ptrace.h index 9e34463d07e..ed913628152 100644 --- a/sys/arch/mvme88k/include/ptrace.h +++ b/sys/arch/mvme88k/include/ptrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ptrace.h,v 1.9 2004/01/11 23:52:45 miod Exp $ */ +/* $OpenBSD: ptrace.h,v 1.10 2004/01/14 07:25:16 miod Exp $ */ /* * Copyright (c) 1999, Steve Murphree, Jr. * Copyright (c) 1992, 1993 @@ -55,6 +55,8 @@ #define PT_GETFPREGS (PT_FIRSTMACH + 3) #define PT_SETFPREGS (PT_FIRSTMACH + 4) +#ifdef _KERNEL int cpu_singlestep(struct proc *); +#endif #endif /* __MACHINE_PTRACE_H__ */ |