From: Chris Hanson Date: Mon, 27 Jun 2011 00:23:22 +0000 (-0700) Subject: Reorder for consistency. X-Git-Tag: release-9.1.0~12 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6fb6b8cdd8c5c85ce2d2ead30009a9783671f63d;p=mit-scheme.git Reorder for consistency. --- diff --git a/src/microcode/confshared.h b/src/microcode/confshared.h index e8cd15388..d047a8c2a 100644 --- a/src/microcode/confshared.h +++ b/src/microcode/confshared.h @@ -135,10 +135,10 @@ USA. #endif #ifndef TIME_T_MAX -# if SIZEOF_TIME_T == SIZEOF_INTMAX_T -# define TIME_T_MAX INTMAX_MAX -# else +# if SIZEOF_TIME_T < SIZEOF_INTMAX_T # define TIME_T_MAX (~ ((~ ((intmax_t) 0)) << (CHAR_BIT * SIZEOF_TIME_T))) +# else +# define TIME_T_MAX INTMAX_MAX # endif #endif