diff options
author | dyson <dyson@FreeBSD.org> | 1996-03-09 06:42:15 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-03-09 06:42:15 +0000 |
commit | 77f053059a90cac34958fb41722b941023f27c6c (patch) | |
tree | 2d804684f534f597ea0ccec845e77e7b21e5e83e | |
parent | 53c7b9f85354394ae5d8d9f88d5cffbb319a9e3b (diff) | |
download | FreeBSD-src-77f053059a90cac34958fb41722b941023f27c6c.zip FreeBSD-src-77f053059a90cac34958fb41722b941023f27c6c.tar.gz |
Remove a now unnecessary function prototype.
-rw-r--r-- | sys/kern/vfs_vnops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index a215d28..2817da1 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94 - * $Id: vfs_vnops.c,v 1.23 1996/01/19 03:58:17 dyson Exp $ + * $Id: vfs_vnops.c,v 1.24 1996/03/02 03:45:05 dyson Exp $ */ #include <sys/param.h> @@ -62,8 +62,6 @@ static int vn_ioctl __P((struct file *fp, int com, caddr_t data, static int vn_read __P((struct file *fp, struct uio *uio, struct ucred *cred)); static int vn_select __P((struct file *fp, int which, struct proc *p)); -int vn_vmio_open __P((struct vnode *vp, struct proc *p, - struct ucred *cred)); static int vn_write __P((struct file *fp, struct uio *uio, struct ucred *cred)); |