summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-31 04:43:59 +0000
committerJim Meyering <jim@meyering.net>1996-07-31 04:43:59 +0000
commit402b4612f85b40f3fc1760ebdced65b2934dd659 (patch)
tree35ecf95d22c316630c6e54fb0fea96eae26bfc28 /lib
parenta0446085699dd76edbc8eef39a310d76b7e7b305 (diff)
downloadcoreutils-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.c4
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