diff options
author | mux <mux@FreeBSD.org> | 2002-08-13 16:20:12 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2002-08-13 16:20:12 +0000 |
commit | b4479e513a3c6582acf226b259844fa409fd6e31 (patch) | |
tree | c6cd292751d1b56709f13f09d680271d3a99d580 | |
parent | db0487de245a15f77129406d87b7447837e5c484 (diff) | |
download | FreeBSD-src-b4479e513a3c6582acf226b259844fa409fd6e31.zip FreeBSD-src-b4479e513a3c6582acf226b259844fa409fd6e31.tar.gz |
Forward define struct iovec instead of including
sys/uio.h and polluting the namespace even more.
-rw-r--r-- | sys/sys/mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 52b9855..14a1e64 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -46,12 +46,12 @@ #include <sys/mac.h> #include <sys/ucred.h> #include <sys/queue.h> -#include <sys/uio.h> #ifdef _KERNEL #include <sys/_lock.h> #include <sys/_mutex.h> #endif +struct iovec; struct netcred; struct netexport; |