mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:37:36 +00:00
LibC: Add definitions for INTMAX_C and UINTMAX_C
This commit is contained in:
parent
1946a4bee6
commit
dce57cd085
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue