From dace5f55ca130b73dfb6951e815501a299f8244a Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 11 Nov 1995 03:36:07 +0000 Subject: Removed unsed function dead_nullop(). Converted incomplete function declarations to prototypes. --- sys/fs/deadfs/dead_vnops.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'sys/fs') diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c index 55534d18d088..45d9997d58a2 100644 --- a/sys/fs/deadfs/dead_vnops.c +++ b/sys/fs/deadfs/dead_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)dead_vnops.c 8.1 (Berkeley) 6/10/93 - * $Id: dead_vnops.c,v 1.7 1995/09/04 00:20:26 dyson Exp $ + * $Id: dead_vnops.c,v 1.8 1995/11/09 08:14:59 bde Exp $ */ #include @@ -48,8 +48,8 @@ static int chkvnlock __P((struct vnode *)); /* * Prototypes for dead operations on vnodes. */ -int dead_badop(), - dead_ebadf(); +int dead_badop __P((void)); +int dead_ebadf __P((void)); int dead_lookup __P((struct vop_lookup_args *)); #define dead_create ((int (*) __P((struct vop_create_args *)))dead_badop) #define dead_mknod ((int (*) __P((struct vop_mknod_args *)))dead_badop) @@ -346,16 +346,6 @@ dead_badop() /* NOTREACHED */ } -/* - * Empty vnode null operation - */ -int -dead_nullop() -{ - - return (0); -} - /* * We have to wait during times when the vnode is * in a state of change. -- cgit v1.2.3