instead of ULLONG_MAX, as the latter doesn't work with GCC 2.7.2.1.
-2005-09-28 Jim Meyering <jim@meyering.net>
+2005-09-28 Paul Eggert <eggert@cs.ucla.edu>
* Version 5.90-cvs.
+
+ * 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.
+
+2005-09-28 Jim Meyering <jim@meyering.net>
+
* configure.ac: Use 5.90-cvs as the version string, not 5.3.1-cvs.
* NEWS: Adjust accordingly.
# include <stdint.h>
#endif
-#if ULONG_MAX < ULLONG_MAX
+#if ULONG_MAX_LT_ULLONG_MAX
# define LONGEST_MODIFIER "ll"
#else
# define LONGEST_MODIFIER "l"