diff options
author | peter <peter@FreeBSD.org> | 1997-05-25 04:50:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-05-25 04:50:02 +0000 |
commit | e803ad6c09aa9268a4b0333ffec2dc07a37d0e85 (patch) | |
tree | b5c0c93007f48abe938a6f44e66e3cffbd0c89cb /sys/fs/nullfs/null.h | |
parent | 47e5187c67dc3e94283e5c7500d83e294ace4409 (diff) | |
download | FreeBSD-src-e803ad6c09aa9268a4b0333ffec2dc07a37d0e85.zip FreeBSD-src-e803ad6c09aa9268a4b0333ffec2dc07a37d0e85.tar.gz |
Fix some warnings (missing prototypes, wrong "generic" args etc)
umapfs uses one of nullfs's functions...
Diffstat (limited to 'sys/fs/nullfs/null.h')
-rw-r--r-- | sys/fs/nullfs/null.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null.h b/sys/fs/nullfs/null.h index 8e886f7..0b438fe 100644 --- a/sys/fs/nullfs/null.h +++ b/sys/fs/nullfs/null.h @@ -35,7 +35,7 @@ * * @(#)null.h 8.3 (Berkeley) 8/20/94 * - * $Id$ + * $Id: null.h,v 1.6 1997/02/22 09:40:20 peter Exp $ */ struct null_args { @@ -70,6 +70,8 @@ extern struct vnode *null_checkvp __P((struct vnode *vp, char *fil, int lno)); #define NULLVPTOLOWERVP(vp) (VTONULL(vp)->null_lowervp) #endif +extern int null_bypass __P((struct vop_generic_args *ap)); + extern vop_t **null_vnodeop_p; extern struct vfsops null_vfsops; #endif /* KERNEL */ |