From 9aee1407f1747c158776519afa454ea2b88e5129 Mon Sep 17 00:00:00 2001 From: "Nakamura, Yuuichi" Date: Fri, 7 Feb 2020 19:18:25 +0900 Subject: [PATCH] fix INTPTR_MAX define --- include/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdint.h b/include/stdint.h index 6f2f153f54..66114cd63e 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -134,7 +134,7 @@ /* Limits of integer types capable of holding object pointers */ #define INTPTR_MIN PTR_MIN -#define INTPTR_MAX PTR_MIN +#define INTPTR_MAX PTR_MAX #define UINTPTR_MAX UPTR_MAX /* Limits of greatest-width integer types */