* xtime.h (XTIME_PRECISION): Now of type int, not long long int,
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 29 Sep 2005 16:51:23 +0000 (16:51 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 29 Sep 2005 16:51:23 +0000 (16:51 +0000)
so that the code works even with ancient cpp.  Portability problem
with GCC 2.7.2.1 reported by Thomas M.Ott.

lib/ChangeLog
lib/xtime.h

index 3682552c384bd56f88b73aa2b36bd09c782f6532..322f22849f8b2ed874bf9d06b124caba7178436e 100644 (file)
@@ -1,3 +1,9 @@
+2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * xtime.h (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.
+
 2005-09-27  Jim Meyering  <jim@meyering.net>
 
        * getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef HAVE_CONFIG_H.
index 1d5f70b0d89b7cd8355ca863ca9373430b5179a9..3c7f620dbe964a15e2d3b5e6f576b323ab1bf7dc 100644 (file)
    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