summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_vnops.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/kern/vfs_vnops.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/kern/vfs_vnops.c')
-rw-r--r--sys/kern/vfs_vnops.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c
index 8314a049da7..728a5ba13f9 100644
--- a/sys/kern/vfs_vnops.c
+++ b/sys/kern/vfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_vnops.c,v 1.39 2001/12/19 08:58:06 art Exp $ */
+/* $OpenBSD: vfs_vnops.c,v 1.40 2002/03/14 01:27:06 millert Exp $ */
/* $NetBSD: vfs_vnops.c,v 1.20 1996/02/04 02:18:41 christos Exp $ */
/*
@@ -57,15 +57,15 @@
#include <uvm/uvm_extern.h>
-int vn_read __P((struct file *fp, off_t *off, struct uio *uio,
- struct ucred *cred));
-int vn_write __P((struct file *fp, off_t *off, struct uio *uio,
- struct ucred *cred));
-int vn_select __P((struct file *fp, int which, struct proc *p));
-int vn_kqfilter __P((struct file *fp, struct knote *kn));
-int vn_closefile __P((struct file *fp, struct proc *p));
-int vn_ioctl __P((struct file *fp, u_long com, caddr_t data,
- struct proc *p));
+int vn_read(struct file *fp, off_t *off, struct uio *uio,
+ struct ucred *cred);
+int vn_write(struct file *fp, off_t *off, struct uio *uio,
+ struct ucred *cred);
+int vn_select(struct file *fp, int which, struct proc *p);
+int vn_kqfilter(struct file *fp, struct knote *kn);
+int vn_closefile(struct file *fp, struct proc *p);
+int vn_ioctl(struct file *fp, u_long com, caddr_t data,
+ struct proc *p);
struct fileops vnops =
{ vn_read, vn_write, vn_ioctl, vn_select, vn_kqfilter, vn_statfile,