diff options
Diffstat (limited to 'Userland/Libraries/LibC')
-rw-r--r-- | Userland/Libraries/LibC/bits/stdint.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/bits/stdint.h b/Userland/Libraries/LibC/bits/stdint.h index 73eb81f786..53e1c82f9b 100644 --- a/Userland/Libraries/LibC/bits/stdint.h +++ b/Userland/Libraries/LibC/bits/stdint.h @@ -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 |