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/isofs/cd9660/cd9660_vfsops.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/isofs/cd9660/cd9660_vfsops.c')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 354295c5bb0..1e0e3cf55a7 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.29 2002/03/10 03:34:35 fgsch Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.30 2002/03/14 01:27:03 millert Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -86,9 +86,9 @@ struct vfsops cd9660_vfsops = { * Called by vfs_mountroot when iso is going to be mounted as root. */ -static int iso_mountfs __P((struct vnode *devvp, struct mount *mp, - struct proc *p, struct iso_args *argp)); -int iso_disklabelspoof __P((dev_t dev, void (*strat) __P((struct buf *)), +static int iso_mountfs(struct vnode *devvp, struct mount *mp, + struct proc *p, struct iso_args *argp); +int iso_disklabelspoof __P((dev_t dev, void (*strat)(struct buf *), struct disklabel *lp)); int @@ -451,7 +451,7 @@ out: int iso_disklabelspoof(dev, strat, lp) dev_t dev; - void (*strat) __P((struct buf *)); + void (*strat)(struct buf *); register struct disklabel *lp; { struct buf *bp = NULL; |