diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-06 19:46:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-06 19:46:45 +0000 |
commit | 81c26ff410ba7a3c69fb6b1a40ad708c887effd7 (patch) | |
tree | 319af9458b7bb80a4928c36283667b6d43a5175a /lib | |
parent | 5b06e5f698b56a041009a2acc5e13f96107e2c9f (diff) | |
download | coreutils-81c26ff410ba7a3c69fb6b1a40ad708c887effd7.tar.xz |
Merge from gnulib.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fsusage.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/fsusage.c b/lib/fsusage.c index f717d43a9..d92602936 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -1,6 +1,7 @@ /* fsusage.c -- return space usage of mounted filesystems - Copyright (C) 1991, 1992, 1996, 1998, 1999, 2002, 2003 Free Software - Foundation, Inc. + + Copyright (C) 1991, 1992, 1996, 1998, 1999, 2002, 2003 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,12 +36,7 @@ #include <sys/stat.h> #include "fsusage.h" -#if HAVE_LIMITS_H -# include <limits.h> -#endif -#ifndef CHAR_BIT -# define CHAR_BIT 8 -#endif +#include <limits.h> #if HAVE_SYS_PARAM_H # include <sys/param.h> |