summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/include/stdint.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 6831ea1b5..ad622a212 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2009-04-11 Dave Korn <dave.korn.cygwin@googlemail.com>
+
+ * include/stdint.h (INTPTR_MIN, INTPTR_MAX): Add 'L' suffix.
+ (WINT_MAX): Add 'U' suffix.
+
2009-04-10 Christopher Faylor <me+cygwin@cgf.cx>
* speclib: Use a more robust method to derive full file path.
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 */