diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-11-26 07:40:23 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-11-26 07:40:23 +0000 |
commit | cc08c826e94d19baafc3e58804d5dd81564eaee4 (patch) | |
tree | 1b0710206c4a591bb5bfa06466dacb8cf9979bdf /lib | |
parent | d45902c31b8d8890abfd4d70dccf00b4e7f37243 (diff) | |
download | coreutils-cc08c826e94d19baafc3e58804d5dd81564eaee4.tar.xz |
(statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
Declaring int functions causes warnings on some modern systems and
shouldn't be needed to compile on ancient ones.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fsusage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/fsusage.c b/lib/fsusage.c index f1dfb2d7e..a07618c8c 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -74,7 +74,6 @@ #if HAVE_SYS_STATVFS_H /* SVR4 */ # include <sys/statvfs.h> -int statvfs (); #endif #include "full-read.h" |