diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 07:51:46 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 07:51:46 +0000 |
commit | 728484a7457c5aef1f6a3d30a7bf3f6e215bf900 (patch) | |
tree | 30a9106ca00a2f588e91084d486ef8f073bf1b46 /sys/i386/svr4 | |
parent | 064c0537d11ac3c5a37db86bdd0cb077e0532f0a (diff) | |
download | FreeBSD-src-728484a7457c5aef1f6a3d30a7bf3f6e215bf900.zip FreeBSD-src-728484a7457c5aef1f6a3d30a7bf3f6e215bf900.tar.gz |
Remove __P.
Diffstat (limited to 'sys/i386/svr4')
-rw-r--r-- | sys/i386/svr4/svr4_machdep.c | 2 | ||||
-rw-r--r-- | sys/i386/svr4/svr4_machdep.h | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/i386/svr4/svr4_machdep.c b/sys/i386/svr4/svr4_machdep.c index 42e565c..c82718d 100644 --- a/sys/i386/svr4/svr4_machdep.c +++ b/sys/i386/svr4/svr4_machdep.c @@ -66,7 +66,7 @@ extern int svr4_szsigcode; extern char svr4_sigcode[]; extern int _udatasel, _ucodesel; -static void svr4_getsiginfo __P((union svr4_siginfo *, int, u_long, caddr_t)); +static void svr4_getsiginfo(union svr4_siginfo *, int, u_long, caddr_t); #if !defined(__NetBSD__) /* taken from /sys/arch/i386/include/psl.h on NetBSD-1.3 */ diff --git a/sys/i386/svr4/svr4_machdep.h b/sys/i386/svr4/svr4_machdep.h index f6f58e3..b3d1744 100644 --- a/sys/i386/svr4/svr4_machdep.h +++ b/sys/i386/svr4/svr4_machdep.h @@ -74,9 +74,8 @@ typedef struct { struct thread; struct svr4_ucontext; -void svr4_getcontext __P((struct thread *, struct svr4_ucontext *, - sigset_t *, int)); -int svr4_setcontext __P((struct thread *p, struct svr4_ucontext *)); +void svr4_getcontext(struct thread *, struct svr4_ucontext *, sigset_t *, int); +int svr4_setcontext(struct thread *p, struct svr4_ucontext *); typedef struct { svr4_gregset_t greg; |