diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-11 22:53:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-11 22:53:42 +0000 |
commit | a2a75f42b96df600aefffb291919895e6cc9f1f2 (patch) | |
tree | f3f14ce55110a8d7c36916a55f6a4320f2fd1f36 /sys/arch/i386/include/svr4_machdep.h | |
parent | 495e90d12de21424292515a57020ceeceec9711f (diff) |
put protos inside #ifdef _KERNEL
Diffstat (limited to 'sys/arch/i386/include/svr4_machdep.h')
-rw-r--r-- | sys/arch/i386/include/svr4_machdep.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/include/svr4_machdep.h b/sys/arch/i386/include/svr4_machdep.h index e845400acaa..cc77173d17b 100644 --- a/sys/arch/i386/include/svr4_machdep.h +++ b/sys/arch/i386/include/svr4_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: svr4_machdep.h,v 1.5 1997/08/27 20:17:42 mickey Exp $ */ +/* $OpenBSD: svr4_machdep.h,v 1.6 1997/11/11 22:53:41 deraadt Exp $ */ /* $NetBSD: svr4_machdep.h,v 1.5 1995/03/31 02:51:37 christos Exp $ */ /* @@ -69,9 +69,11 @@ typedef struct { struct svr4_ucontext; +#ifdef _KERNEL void svr4_getcontext __P((struct proc *, struct svr4_ucontext *, int, int)); int svr4_setcontext __P((struct proc *, struct svr4_ucontext *)); void svr4_sendsig __P((sig_t, int, int, u_long, int, union sigval)); +#endif typedef struct { svr4_gregset_t greg; |