summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/stdint.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-08-08 19:30:41 +0000
committerChristopher Faylor <me@cgf.cx>2003-08-08 19:30:41 +0000
commit5c65fa020016e24489f5b695cf400ba4660ae76c (patch)
tree748a6cd6d5dce13b4d98b28b1d5d3f2b33093e1a /winsup/cygwin/include/stdint.h
parentb344f1876c90d48d2d0921a2ffcb6e374eafef67 (diff)
downloadcygnal-5c65fa020016e24489f5b695cf400ba4660ae76c.tar.gz
cygnal-5c65fa020016e24489f5b695cf400ba4660ae76c.tar.bz2
cygnal-5c65fa020016e24489f5b695cf400ba4660ae76c.zip
* include/stdint.h: Correctly define INT32_MIN.
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r--winsup/cygwin/include/stdint.h2
1 files changed, 1 insertions, 1 deletions
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)