ソースを参照

LibC: Add definitions for INTMAX_C and UINTMAX_C

Gunnar Beutner 4 年 前
コミット
dce57cd085
1 ファイル変更3 行追加0 行削除
  1. 3 0
      Userland/Libraries/LibC/bits/stdint.h

+ 3 - 0
Userland/Libraries/LibC/bits/stdint.h

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