Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-08-08 23:30:41 +0400
committerChristopher Faylor <me@cgf.cx>2003-08-08 23:30:41 +0400
commit5c65fa020016e24489f5b695cf400ba4660ae76c (patch)
tree748a6cd6d5dce13b4d98b28b1d5d3f2b33093e1a /winsup/cygwin
parentb344f1876c90d48d2d0921a2ffcb6e374eafef67 (diff)
* include/stdint.h: Correctly define INT32_MIN.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/include/stdint.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 39c3a6735..081ac2abe 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index 66fd49d3f..03f1cf0d3 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -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)