diff options
author | Jim Meyering <jim@meyering.net> | 1996-05-23 13:04:03 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-05-23 13:04:03 +0000 |
commit | c2705c1e62dd672ab55af6420a9818322f23affb (patch) | |
tree | 218b8fdcd0c4d652bf9021aaaf362c93ea7747eb /lib | |
parent | 63d49273c475b545d02048d6676e5780e2c8a7dd (diff) | |
download | coreutils-c2705c1e62dd672ab55af6420a9818322f23affb.tar.xz |
[_CRAY]: Don't include sys/filsys.h because although
Unicos-9 has it, it's not needed and would cause other problems
because it requires inclusion of other, non-standard headers.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fsusage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fsusage.c b/lib/fsusage.c index 8a60eb1a2..5260b9f80 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -37,7 +37,7 @@ int statfs (); #include <sys/vfs.h> #endif -#ifdef HAVE_SYS_FILSYS_H +#if defined(HAVE_SYS_FILSYS_H) && !defined(_CRAY) #include <sys/filsys.h> /* SVR2. */ #endif |