From: Paul Eggert Date: Thu, 29 Sep 2005 16:51:23 +0000 (+0000) Subject: * xtime.h (XTIME_PRECISION): Now of type int, not long long int, X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0849d13dad0b2a5fe72b2fb5d480a0822b8819b;p=pspp * 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. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 3682552c38..322f22849f 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2005-09-29 Paul Eggert + + * 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 * getcwd.c: Change #ifdefHAVE_CONFIG_H to #ifdef HAVE_CONFIG_H. diff --git a/lib/xtime.h b/lib/xtime.h index 1d5f70b0d8..3c7f620dbe 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 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