diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/kern/exec_subr.c | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/kern/exec_subr.c')
-rw-r--r-- | sys/kern/exec_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/exec_subr.c b/sys/kern/exec_subr.c index d1ba66f4a82..ab13183ab83 100644 --- a/sys/kern/exec_subr.c +++ b/sys/kern/exec_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_subr.c,v 1.17 2001/12/19 08:58:06 art Exp $ */ +/* $OpenBSD: exec_subr.c,v 1.18 2002/03/14 01:27:04 millert Exp $ */ /* $NetBSD: exec_subr.c,v 1.9 1994/12/04 03:10:42 mycroft Exp $ */ /* @@ -56,7 +56,7 @@ void new_vmcmd(evsp, proc, len, addr, vp, offset, prot) struct exec_vmcmd_set *evsp; - int (*proc) __P((struct proc * p, struct exec_vmcmd *)); + int (*proc)(struct proc * p, struct exec_vmcmd *); u_long len; u_long addr; struct vnode *vp; |