mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibC: Add definitions for INTMAX_C and UINTMAX_C
This commit is contained in:
parent
1946a4bee6
commit
dce57cd085
Notes:
sideshowbarker
2024-07-18 20:23:34 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/dce57cd085f Pull-request: https://github.com/SerenityOS/serenity/pull/6307 Reviewed-by: https://github.com/awesomekling
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…
Reference in a new issue