diff options
author | bde <bde@FreeBSD.org> | 1995-12-03 14:54:48 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-03 14:54:48 +0000 |
commit | 64a1fca498baa82452b7832f03fb52d55b65861e (patch) | |
tree | a9998e1f2bc07a055eec218c76160973d186c314 /sys/fs/nullfs/null_vnops.c | |
parent | 1a0a9cf4f5008de06188ddc5eefe1b6e156a792b (diff) | |
download | FreeBSD-src-64a1fca498baa82452b7832f03fb52d55b65861e.zip FreeBSD-src-64a1fca498baa82452b7832f03fb52d55b65861e.tar.gz |
Added prototypes.
Removed some unnecessary #includes.
Diffstat (limited to 'sys/fs/nullfs/null_vnops.c')
-rw-r--r-- | sys/fs/nullfs/null_vnops.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 41e9f70..4013f50 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -35,7 +35,7 @@ * * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93 * - * $Id: null_vnops.c,v 1.8 1995/05/30 08:07:03 rgrimes Exp $ + * $Id: null_vnops.c,v 1.9 1995/11/09 08:14:51 bde Exp $ */ /* @@ -173,9 +173,16 @@ #include <sys/buf.h> #include <miscfs/nullfs/null.h> - int null_bug_bypass = 0; /* for debugging: enables bypass printf'ing */ +extern int null_bypass __P((struct vop_generic_args *ap)); +extern int null_bwrite __P((struct vop_bwrite_args *ap)); +extern int null_getattr __P((struct vop_getattr_args *ap)); +extern int null_inactive __P((struct vop_inactive_args *ap)); +extern int null_print __P((struct vop_print_args *ap)); +extern int null_reclaim __P((struct vop_reclaim_args *ap)); +extern int null_strategy __P((struct vop_strategy_args *ap)); + /* * This is the 10-Apr-92 bypass routine. * This version has been optimized for speed, throwing away some |