From 7dd859c4695de87ee3848011f1e56f3f97960c29 Mon Sep 17 00:00:00 2001 From: κΉ€νƒœμ€ Date: Sat, 10 Jun 2023 00:02:11 +0900 Subject: Define U64_MAX --- include/types.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/types.h b/include/types.h index d370bcfb..070a633b 100644 --- a/include/types.h +++ b/include/types.h @@ -25,6 +25,7 @@ #include #include +#include #include "config.h" typedef uint8_t u8; @@ -71,6 +72,7 @@ typedef uint128_t u128; #define FS_OPT_SET_MAPSIZE(x) \ (x <= 1 || x > FS_OPT_MAX_MAPSIZE ? 0 : ((x - 1) << 1)) +#define U64_MAX ULLONG_MAX typedef unsigned long long u64; typedef int8_t s8; -- cgit 1.4.1