OSDN Git Service

* include/stdint.h: Correctly define INT32_MIN.
authorcgf <cgf>
Fri, 8 Aug 2003 19:30:41 +0000 (19:30 +0000)
committercgf <cgf>
Fri, 8 Aug 2003 19:30:41 +0000 (19:30 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/stdint.h

index 39c3a67..081ac2a 100644 (file)
@@ -1,3 +1,7 @@
+2003-08-08  Gerrit P. Haase  <gp@familiehaase.de>
+
+       * include/stdint.h: Correctly define INT32_MIN.
+
 2003-08-08  David Rothenberger  <daveroth@acm.org>
 
        * grp.cc (read_group): Set __group32.gr_mem pointer back to &null_ptr
index 66fd49d..03f1cf0 100644 (file)
@@ -70,7 +70,7 @@ typedef unsigned long long uintmax_t;
 
 #define INT8_MIN (-128)
 #define INT16_MIN (-32768)
-#define INT32_MIN (-2147483648)
+#define INT32_MIN (-2147483647-1)
 #define INT64_MIN (-9223372036854775808)
 
 #define INT8_MAX (127)