diff options
author | wollman <wollman@FreeBSD.org> | 1994-11-02 00:11:00 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-11-02 00:11:00 +0000 |
commit | c6477bf5ea7f8dd4f0f3e1360b3f3852aa29237f (patch) | |
tree | 9c3f7a2751857937786a95b27dfdc0d6be956a0f /sys/nfs/nfs.h | |
parent | db7efc262840dcf027d79883afc984576e306787 (diff) | |
download | FreeBSD-src-c6477bf5ea7f8dd4f0f3e1360b3f3852aa29237f.zip FreeBSD-src-c6477bf5ea7f8dd4f0f3e1360b3f3852aa29237f.tar.gz |
Forward-declare a few structures to avoid warning messages.
Diffstat (limited to 'sys/nfs/nfs.h')
-rw-r--r-- | sys/nfs/nfs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/nfs/nfs.h b/sys/nfs/nfs.h index e77353f..2f3aa57 100644 --- a/sys/nfs/nfs.h +++ b/sys/nfs/nfs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs.h 8.1 (Berkeley) 6/10/93 - * $Id: nfs.h,v 1.6 1994/10/17 17:47:30 phk Exp $ + * $Id: nfs.h,v 1.7 1994/10/23 23:26:15 wollman Exp $ */ #ifndef _NFS_NFS_H_ @@ -174,6 +174,9 @@ struct nfsstats { * by them and break. */ #ifdef KERNEL + +struct uio; struct buf; struct vattr; struct nameidata; /* XXX */ + #define NFSINT_SIGMASK (sigmask(SIGINT)|sigmask(SIGTERM)|sigmask(SIGKILL)| \ sigmask(SIGHUP)|sigmask(SIGQUIT)) |