diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-19 22:20:14 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-19 22:20:14 +0000 |
commit | 1446d094292532062a83b8dc4587f9b62a6120df (patch) | |
tree | cf7078f9ddebb58cb7cd55dcd736f1f25c75ac7f /sys/fs/hpfs/hpfs_vfsops.c | |
parent | c147e70b997febc0da8565eecf0dabede1ba5f88 (diff) | |
download | FreeBSD-src-1446d094292532062a83b8dc4587f9b62a6120df.zip FreeBSD-src-1446d094292532062a83b8dc4587f9b62a6120df.tar.gz |
Remove __P.
Diffstat (limited to 'sys/fs/hpfs/hpfs_vfsops.c')
-rw-r--r-- | sys/fs/hpfs/hpfs_vfsops.c | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/sys/fs/hpfs/hpfs_vfsops.c b/sys/fs/hpfs/hpfs_vfsops.c index cf3c114..05ae373 100644 --- a/sys/fs/hpfs/hpfs_vfsops.c +++ b/sys/fs/hpfs/hpfs_vfsops.c @@ -55,21 +55,19 @@ MALLOC_DEFINE(M_HPFSNO, "HPFS node", "HPFS node structure"); struct sockaddr; -static int hpfs_root __P((struct mount *, struct vnode **)); -static int hpfs_statfs __P((struct mount *, struct statfs *, - struct thread *)); -static int hpfs_unmount __P((struct mount *, int, struct thread *)); -static int hpfs_vget __P((struct mount *mp, ino_t ino, int flags, - struct vnode **vpp)); -static int hpfs_mountfs __P((register struct vnode *, struct mount *, - struct hpfs_args *, struct thread *)); -static int hpfs_vptofh __P((struct vnode *, struct fid *)); -static int hpfs_fhtovp __P((struct mount *, struct fid *, - struct vnode **)); -static int hpfs_mount __P((struct mount *, char *, caddr_t, - struct nameidata *, struct thread *)); -static int hpfs_init __P((struct vfsconf *)); -static int hpfs_uninit __P((struct vfsconf *)); +static int hpfs_root(struct mount *, struct vnode **); +static int hpfs_statfs(struct mount *, struct statfs *, struct thread *); +static int hpfs_unmount(struct mount *, int, struct thread *); +static int hpfs_vget(struct mount *mp, ino_t ino, int flags, + struct vnode **vpp); +static int hpfs_mountfs(register struct vnode *, struct mount *, + struct hpfs_args *, struct thread *); +static int hpfs_vptofh(struct vnode *, struct fid *); +static int hpfs_fhtovp(struct mount *, struct fid *, struct vnode **); +static int hpfs_mount(struct mount *, char *, caddr_t, + struct nameidata *, struct thread *); +static int hpfs_init(struct vfsconf *); +static int hpfs_uninit(struct vfsconf *); static int hpfs_init ( |