summaryrefslogtreecommitdiffstats
path: root/sys/nfs/nfs_vfsops.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
committermillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
commitc4071fd13883b3f74b90a411bbb39755a785aeaa (patch)
tree241e7c760222fac909b512d36156c6db1b610256 /sys/nfs/nfs_vfsops.c
parentcompare pointers with NULL not 0 (diff)
downloadwireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz
wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip
First round of __P removal in sys
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
-rw-r--r--sys/nfs/nfs_vfsops.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c
index 043819c109b..d4f2cf0abc8 100644
--- a/sys/nfs/nfs_vfsops.c
+++ b/sys/nfs/nfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_vfsops.c,v 1.47 2002/02/23 23:47:13 art Exp $ */
+/* $OpenBSD: nfs_vfsops.c,v 1.48 2002/03/14 01:27:13 millert Exp $ */
/* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */
/*
@@ -75,11 +75,9 @@
extern struct nfsstats nfsstats;
extern int nfs_ticks;
-int nfs_sysctl
- __P((int *, u_int, void *, size_t *, void *, size_t, struct proc *));
-int nfs_checkexp
- __P((struct mount *mp, struct mbuf *nam,
- int *extflagsp, struct ucred **credanonp));
+int nfs_sysctl(int *, u_int, void *, size_t *, void *, size_t, struct proc *);
+int nfs_checkexp(struct mount *mp, struct mbuf *nam,
+ int *extflagsp, struct ucred **credanonp);
/*
* nfs vfs operations.
@@ -103,8 +101,7 @@ struct vfsops nfs_vfsops = {
extern u_int32_t nfs_procids[NFS_NPROCS];
extern u_int32_t nfs_prog, nfs_vers;
-struct mount *nfs_mount_diskless
- __P((struct nfs_dlmount *, char *, int));
+struct mount *nfs_mount_diskless(struct nfs_dlmount *, char *, int);
#define TRUE 1
#define FALSE 0