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:
authorCorinna Vinschen <corinna@vinschen.de>2009-04-11 12:07:30 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-04-11 12:07:30 +0400
commit1b98373a408e605782afb70f1c1a94363c1fdaad (patch)
treecedf07a8edd9f06b31f81e58561d4c1f3d0de7a1 /winsup/cygwin/include/stdint.h
parent1318037e447dd88aed345e9748005b46802f50d2 (diff)
* include/stdint.h (INTPTR_MIN, INTPTR_MAX): Add 'L' suffix.
(WINT_MAX): Add 'U' suffix.
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r--winsup/cygwin/include/stdint.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index 7ea000f8f..47c591498 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -119,8 +119,8 @@ typedef unsigned long long uintmax_t;
/* Limits of integer types capable of holding object pointers */
-#define INTPTR_MIN (-2147483647 - 1)
-#define INTPTR_MAX (2147483647)
+#define INTPTR_MIN (-2147483647L - 1L)
+#define INTPTR_MAX (2147483647L)
#define UINTPTR_MAX (4294967295UL)
/* Limits of greatest-width integer types */
@@ -144,7 +144,7 @@ typedef unsigned long long uintmax_t;
#endif
#ifndef SIZE_MAX
-#define SIZE_MAX (4294967295UL)
+#define SIZE_MAX (4294967295U)
#endif
#ifndef WCHAR_MIN
@@ -159,7 +159,7 @@ typedef unsigned long long uintmax_t;
#ifndef WINT_MIN
#define WINT_MIN 0U
-#define WINT_MAX UINT_MAX
+#define WINT_MAX (4294967295U)
#endif
/* Macros for minimum-width integer constant expressions */