From 1b98373a408e605782afb70f1c1a94363c1fdaad Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sat, 11 Apr 2009 08:07:30 +0000 Subject: [PATCH] * include/stdint.h (INTPTR_MIN, INTPTR_MAX): Add 'L' suffix. (WINT_MAX): Add 'U' suffix. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/include/stdint.h | 8 ++++---- 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 + + * include/stdint.h (INTPTR_MIN, INTPTR_MAX): Add 'L' suffix. + (WINT_MAX): Add 'U' suffix. + 2009-04-10 Christopher Faylor * 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 */