LibC: Add definitions for INTMAX_C and UINTMAX_C

This commit is contained in:
Gunnar Beutner 2021-04-14 03:03:56 +02:00 committed by Andreas Kling
parent 1946a4bee6
commit dce57cd085
Notes: sideshowbarker 2024-07-18 20:23:34 +09:00

View file

@ -138,6 +138,9 @@ typedef __INTMAX_TYPE__ intmax_t;
#define INT64_C(x) x##LL
#define UINT64_C(x) x##ULL
#define INTMAX_C(c) c##LL
#define UINTMAX_C(c) c##ULL
#define SIZE_MAX ((size_t)-1)
__END_DECLS