diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /lkm/union | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'lkm/union')
-rw-r--r-- | lkm/union/union_lkm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lkm/union/union_lkm.c b/lkm/union/union_lkm.c index d1f6dbc900c..0d1cc86f3d8 100644 --- a/lkm/union/union_lkm.c +++ b/lkm/union/union_lkm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: union_lkm.c,v 1.2 2002/02/16 21:27:31 millert Exp $ */ +/* $OpenBSD: union_lkm.c,v 1.3 2002/02/17 19:42:26 millert Exp $ */ /* * union_lkm.c (was: kernfsmod.c) @@ -56,10 +56,10 @@ extern struct vfsops union_vfsops; extern struct vnodeopv_desc union_vnodeop_opv_desc; -extern int (*union_check_p) __P((off_t, struct proc *, struct vnode *, - struct file *, struct uio, int *)); -extern int union_check __P((off_t, struct proc *, struct vnode *, - struct file *, struct uio, int *)); +extern int (*union_check_p)(off_t, struct proc *, struct vnode *, + struct file *, struct uio, int *); +extern int union_check(off_t, struct proc *, struct vnode *, struct file *, + struct uio, int *); static int union_load(struct lkm_table *, int); /* |