diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-29 16:51:40 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-29 16:51:40 +0000 |
commit | 970dc8e4a8cc0a413cb07c27addcdc878b61ac17 (patch) | |
tree | 00f9a50583a4acf5e978adf2ac27e1cc76ea547b /lib | |
parent | c060bb702aded5efa5121efcb36746195327fe66 (diff) | |
download | coreutils-970dc8e4a8cc0a413cb07c27addcdc878b61ac17.tar.xz |
(XTIME_PRECISION): Now of type int, not long long int,
so that the code works even with ancient cpp. Portability problem
with GCC 2.7.2.1 reported by Thomas M.Ott.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xtime.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/xtime.h b/lib/xtime.h index 1d5f70b0d..3c7f620db 100644 --- a/lib/xtime.h +++ b/lib/xtime.h @@ -27,14 +27,14 @@ seconds. */ # if HAVE_LONG_LONG typedef long long int xtime_t; -# define XTIME_PRECISION 1000000000LL +# define XTIME_PRECISION 1000000000 # else # include <limits.h> typedef long int xtime_t; # if LONG_MAX >> 31 >> 31 == 0 -# define XTIME_PRECISION 1L +# define XTIME_PRECISION 1 # else -# define XTIME_PRECISION 1000000000L +# define XTIME_PRECISION 1000000000 # endif # endif |