From de194872240d47137474f610afca16d2ee659549 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 24 Apr 2009 21:55:07 +0000 Subject: 2009-04-24 Joseph Myers * libc/include/stdint.h (UINTPTR_MAX): Define to __UINTPTR_MAX__ if __UINTPTR_MAX__ defined. --- newlib/libc/include/stdint.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'newlib/libc/include/stdint.h') diff --git a/newlib/libc/include/stdint.h b/newlib/libc/include/stdint.h index 2791cd544..94759e969 100644 --- a/newlib/libc/include/stdint.h +++ b/newlib/libc/include/stdint.h @@ -244,7 +244,11 @@ typedef signed __PTRDIFF_TYPE__ intptr_t; typedef unsigned __PTRDIFF_TYPE__ uintptr_t; #define INTPTR_MAX PTRDIFF_MAX #define INTPTR_MIN PTRDIFF_MIN +#ifdef __UINTPTR_MAX__ +#define UINTPTR_MAX __UINTPTR_MAX__ +#else #define UINTPTR_MAX (2UL * PTRDIFF_MAX + 1) +#endif #else /* * Fallback to hardcoded values, -- cgit v1.2.3