diff options
author | bde <bde@FreeBSD.org> | 2000-10-05 11:58:22 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2000-10-05 11:58:22 +0000 |
commit | c58e848e281fd52840d1d701eccb7ee3821ddfc9 (patch) | |
tree | 2635b04bc2994957dd9afe6abffc51f4e059090b /sys/fs/coda | |
parent | de97df028503d8cd5906bf6770bb211b98d0ae28 (diff) | |
download | FreeBSD-src-c58e848e281fd52840d1d701eccb7ee3821ddfc9.zip FreeBSD-src-c58e848e281fd52840d1d701eccb7ee3821ddfc9.tar.gz |
Forward-declare struct mbuf so that this file is less self-insufficient
-- don't depend on garbage in <sys/mount.h>. mbufs aren't actually
used here either. They should have been completely removed from filesystem
interfaces when they were removed from the interfaces to convert between
file handles and vnodes.
Diffstat (limited to 'sys/fs/coda')
-rw-r--r-- | sys/fs/coda/coda_vfsops.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/fs/coda/coda_vfsops.h b/sys/fs/coda/coda_vfsops.h index 13a006d..7fc9adf 100644 --- a/sys/fs/coda/coda_vfsops.h +++ b/sys/fs/coda/coda_vfsops.h @@ -43,6 +43,7 @@ struct cfid { ViceFid cfid_fid; }; +struct mbuf; struct mount; int coda_vfsopstats_init(void); |