diff options
author | bde <bde@FreeBSD.org> | 1995-12-03 10:03:12 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-03 10:03:12 +0000 |
commit | 0424444c05f1d3d6ab6d8956e8a4f89b32353e6c (patch) | |
tree | 5d156c61c326ad43996a98082e1e1f2a41ee1a3e /sys/nfs/nfs_bio.c | |
parent | a4a14ffe8e6e34a437c99e199dc36c4806a9c93f (diff) | |
download | FreeBSD-src-0424444c05f1d3d6ab6d8956e8a4f89b32353e6c.zip FreeBSD-src-0424444c05f1d3d6ab6d8956e8a4f89b32353e6c.tar.gz |
Completed function declarations and/or added prototypes and/or moved
prototypes to the right place.
Diffstat (limited to 'sys/nfs/nfs_bio.c')
-rw-r--r-- | sys/nfs/nfs_bio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/nfs/nfs_bio.c b/sys/nfs/nfs_bio.c index e1dbc246..a32ca73 100644 --- a/sys/nfs/nfs_bio.c +++ b/sys/nfs/nfs_bio.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_bio.c 8.5 (Berkeley) 1/4/94 - * $Id: nfs_bio.c,v 1.17 1995/08/24 10:17:32 dfr Exp $ + * $Id: nfs_bio.c,v 1.18 1995/10/29 15:32:46 phk Exp $ */ #include <sys/param.h> @@ -56,7 +56,9 @@ #include <nfs/nqnfs.h> #include <nfs/nfsnode.h> -struct buf *nfs_getcacheblk(); +extern struct buf *nfs_getcacheblk __P((struct vnode *vp, daddr_t bn, int size, + struct proc *p)); + extern struct proc *nfs_iodwant[NFS_MAXASYNCDAEMON]; extern int nfs_numasync; extern struct nfsstats nfsstats; |