diff options
author | Jim Meyering <jim@meyering.net> | 1996-07-31 04:43:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-07-31 04:43:59 +0000 |
commit | 402b4612f85b40f3fc1760ebdced65b2934dd659 (patch) | |
tree | 35ecf95d22c316630c6e54fb0fea96eae26bfc28 /lib | |
parent | a0446085699dd76edbc8eef39a310d76b7e7b305 (diff) | |
download | coreutils-402b4612f85b40f3fc1760ebdced65b2934dd659.tar.xz |
[HAVE_SYS_FS_S5PARAM_H]: Include sys/fs/s5param.h
to work around bug in sys/filsys.h of Fujitsu UXP/V.
Reported by Johan Danielsson.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fsusage.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/fsusage.c b/lib/fsusage.c index 34093a3a1..f10c9b341 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -37,6 +37,10 @@ int statfs (); #include <sys/vfs.h> #endif +#ifdef HAVE_SYS_FS_S5PARAM_H /* Fujitsu UXP/V */ +#include <sys/fs/s5param.h> +#endif + #if defined(HAVE_SYS_FILSYS_H) && !defined(_CRAY) #include <sys/filsys.h> /* SVR2. */ #endif |