aboutsummaryrefslogtreecommitdiff
path: root/src/type_alias.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-09 17:54:55 +0800
committerMistivia <i@mistivia.com>2025-06-09 17:55:13 +0800
commit2f0781104330d1ae4fae041560ee3a5cb892c3b6 (patch)
treee43dfccb7ea1b0ab13a659ed4fce05acb2cb13b5 /src/type_alias.h
parenta690e564d82a46c4e729d88fcc660e4e2f1e6ceb (diff)
genenric tree map
Diffstat (limited to 'src/type_alias.h')
-rw-r--r--src/type_alias.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/type_alias.h b/src/type_alias.h
index fbee6ef..8f818ed 100644
--- a/src/type_alias.h
+++ b/src/type_alias.h
@@ -5,10 +5,10 @@
#include <stdbool.h>
typedef bool Bool;
-typedef int Int;
-typedef long long Long;
-typedef unsigned int UInt;
-typedef unsigned long long ULong;
+typedef int32_t Int;
+typedef int64_t Long;
+typedef uint32_t UInt;
+typedef uint64_t ULong;
typedef char Char;
typedef float Float;
typedef double Double;