From dce57cd085fa4a135e50b85e26636c4cd587ab11 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 14 Apr 2021 03:03:56 +0200 Subject: [PATCH] LibC: Add definitions for INTMAX_C and UINTMAX_C --- Userland/Libraries/LibC/bits/stdint.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/Libraries/LibC/bits/stdint.h b/Userland/Libraries/LibC/bits/stdint.h index 73eb81f7865..53e1c82f9b8 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