diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/miscfs/union/union_subr.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/miscfs/union/union_subr.c')
-rw-r--r-- | sys/miscfs/union/union_subr.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/miscfs/union/union_subr.c b/sys/miscfs/union/union_subr.c index 6427ea4da13..43867db8ff7 100644 --- a/sys/miscfs/union/union_subr.c +++ b/sys/miscfs/union/union_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: union_subr.c,v 1.10 2001/11/06 19:53:20 miod Exp $ */ +/* $OpenBSD: union_subr.c,v 1.11 2002/03/14 01:27:08 millert Exp $ */ /* $NetBSD: union_subr.c,v 1.18 1996/02/09 22:41:10 christos Exp $ */ /* @@ -70,15 +70,15 @@ static LIST_HEAD(unhead, union_node) unhead[NHASH]; static int unvplock[NHASH]; -static int union_list_lock __P((int)); -static void union_list_unlock __P((int)); -void union_updatevp __P((struct union_node *, struct vnode *, struct vnode *)); -static int union_relookup __P((struct union_mount *, struct vnode *, +static int union_list_lock(int); +static void union_list_unlock(int); +void union_updatevp(struct union_node *, struct vnode *, struct vnode *); +static int union_relookup(struct union_mount *, struct vnode *, struct vnode **, struct componentname *, - struct componentname *, char *, int)); -int union_vn_close __P((struct vnode *, int, struct ucred *, struct proc *)); -static void union_dircache_r __P((struct vnode *, struct vnode ***, int *)); -struct vnode *union_dircache __P((struct vnode *, struct proc *)); + struct componentname *, char *, int); +int union_vn_close(struct vnode *, int, struct ucred *, struct proc *); +static void union_dircache_r(struct vnode *, struct vnode ***, int *); +struct vnode *union_dircache(struct vnode *, struct proc *); /* * This variable is used to hold a pointer to a function @@ -89,8 +89,8 @@ struct vnode *union_dircache __P((struct vnode *, struct proc *)); * to know if UNION is built in, lkm'ed, or not even there. */ extern -int (*union_check_p) __P((struct proc *, struct vnode **, - struct file *, struct uio, int *)); +int (*union_check_p)(struct proc *, struct vnode **, + struct file *, struct uio, int *); int union_check(struct proc *, struct vnode **, struct file *, struct uio, int *); |