diff options
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/stdint.h | 8 |
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 */ |