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-10-28 19:03:52 +0300
committerChristopher Faylor <me@cgf.cx>2003-10-28 19:03:52 +0300
commita4666b3d1b4c817393838c47be1cf3d1a5be4b95 (patch)
treed4193caafa97635cb9b423dc79ee17641cd6e7d9 /winsup/cygwin/include/stdint.h
parent61c4ca410f77d0b6f22e0293519ade770597c0f7 (diff)
* include/stdint.h: Duplicate below effort for rest of *64_*.
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r--winsup/cygwin/include/stdint.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index 0333f154c..95f76add8 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -71,7 +71,7 @@ typedef unsigned long long uintmax_t;
#define INT8_MIN (-128)
#define INT16_MIN (-32768)
#define INT32_MIN (-2147483647-1)
-#define INT64_MIN (-9223372036854775808)
+#define INT64_MIN (-9223372036854775808LL)
#define INT8_MAX (127)
#define INT16_MAX (32767)
@@ -88,12 +88,12 @@ typedef unsigned long long uintmax_t;
#define INT_LEAST8_MIN (-128)
#define INT_LEAST16_MIN (-32768)
#define INT_LEAST32_MIN (-2147483648)
-#define INT_LEAST64_MIN (-9223372036854775808)
+#define INT_LEAST64_MIN (-9223372036854775808LL)
#define INT_LEAST8_MAX (127)
#define INT_LEAST16_MAX (32767)
#define INT_LEAST32_MAX (2147483647)
-#define INT_LEAST64_MAX (9223372036854775807)
+#define INT_LEAST64_MAX (9223372036854775807LL)
#define UINT_LEAST8_MAX (255)
#define UINT_LEAST16_MAX (65535)
@@ -105,12 +105,12 @@ typedef unsigned long long uintmax_t;
#define INT_FAST8_MIN (-128)
#define INT_FAST16_MIN (-2147483648)
#define INT_FAST32_MIN (-2147483648)
-#define INT_FAST64_MIN (-9223372036854775808)
+#define INT_FAST64_MIN (-9223372036854775808LL)
#define INT_FAST8_MAX (127)
#define INT_FAST16_MAX (2147483647)
#define INT_FAST32_MAX (2147483647)
-#define INT_FAST64_MAX (9223372036854775807)
+#define INT_FAST64_MAX (9223372036854775807LL)
#define UINT_FAST8_MAX (255)
#define UINT_FAST16_MAX (4294967295UL)