diff options
author | jkh <jkh@FreeBSD.org> | 1994-08-08 20:24:29 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-08-08 20:24:29 +0000 |
commit | a40e70b97c3bc8caacc6f295ff4bc81adeb94c2e (patch) | |
tree | 1d3f1b129fc3569656170f35cc18c841c322dd6b /gnu/libexec | |
parent | cbc0195a68639aed4ea26944a19819009503693c (diff) | |
download | FreeBSD-src-a40e70b97c3bc8caacc6f295ff4bc81adeb94c2e.zip FreeBSD-src-a40e70b97c3bc8caacc6f295ff4bc81adeb94c2e.tar.gz |
New 2.0 specific changes.
Reviewed by:
Submitted by:
Diffstat (limited to 'gnu/libexec')
-rw-r--r-- | gnu/libexec/uucp/libunix/fsusg.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/libexec/uucp/libunix/fsusg.c b/gnu/libexec/uucp/libunix/fsusg.c index 116ab88..50c1553 100644 --- a/gnu/libexec/uucp/libunix/fsusg.c +++ b/gnu/libexec/uucp/libunix/fsusg.c @@ -24,10 +24,15 @@ #include "fsusg.h" #if STAT_STATFS2_BSIZE +#ifdef __FreeBSD__ +#include <sys/param.h> +#include <sys/mount.h> +#else #ifndef _IBMR2 /* 4.3BSD, SunOS 4, HP-UX, AIX PS/2. */ #include <sys/vfs.h> #endif #endif +#endif #if STAT_STATFS2_FSIZE /* 4.4BSD. */ #include <sys/mount.h> |