diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-28 22:11:06 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-28 22:11:06 +0000 |
commit | d6897a15531976e257080b1fb53a3ff5594f43b0 (patch) | |
tree | 0c81f293e08ea57997a82e4bbf63b8e5bd6813ae /src | |
parent | 3f2693ee63013a64c711edd446612fae339bae0c (diff) | |
download | coreutils-d6897a15531976e257080b1fb53a3ff5594f43b0.tar.xz |
* src/system.h (LONGEST_MODIFIER): Use ULONG_MAX_LT_ULLONG_MAX
instead of ULLONG_MAX, as the latter doesn't work with GCC 2.7.2.1.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h index e2e67c49f..651a58d95 100644 --- a/src/system.h +++ b/src/system.h @@ -316,7 +316,7 @@ initialize_exit_failure (int status) # include <stdint.h> #endif -#if ULONG_MAX < ULLONG_MAX +#if ULONG_MAX_LT_ULLONG_MAX # define LONGEST_MODIFIER "ll" #else # define LONGEST_MODIFIER "l" |