* include/stdint.h: Correctly define INT32_MIN.

This commit is contained in:
Christopher Faylor
2003-08-08 19:30:41 +00:00
parent b344f1876c
commit 5c65fa0200
2 changed files with 5 additions and 1 deletions

View 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)