]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/limits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Always define.
authorCorinna Vinschen <corinna@vinschen.de>
Sun, 29 May 2005 10:05:56 +0000 (10:05 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Sun, 29 May 2005 10:05:56 +0000 (10:05 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/limits.h

index c5159ef373ecb6691b7390875613049ed3b84eab..7225d1520d396275861d3e6fbd9d3a03b0804b2b 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-29  Eric Blake  <ebb9@byu.net>
+
+       * include/limits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Always define.
+
 2005-05-28  Christopher Faylor  <cgf@timesys.com>
 
        * thread.h (pthread_key::set): Inline.
index f74297654de93b8d81cdb969c686009dac8fefb3..01e6db7b7f880531dbd779f41fff3cafe16daa01 100644 (file)
@@ -107,7 +107,6 @@ details. */
 #define ULONG_LONG_MAX (LONG_LONG_MAX * 2ULL + 1)
 #endif
 
-#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
 /* Minimum and maximum values a `signed long long int' can hold.  */
 #undef LLONG_MIN
 #define LLONG_MIN (-LLONG_MAX-1)
@@ -117,7 +116,6 @@ details. */
 /* Maximum value an `unsigned long long int' can hold.  (Minimum is 0).  */
 #undef ULLONG_MAX
 #define ULLONG_MAX (LLONG_MAX * 2ULL + 1)
-#endif
 
 /* Maximum number of iovcnt in a writev (an arbitrary number) */
 #undef IOV_MAX
This page took 0.03674 seconds and 5 git commands to generate.