diff options
| author | Mistivia <i@mistivia.com> | 2025-06-09 14:18:20 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-09 14:18:20 +0800 |
| commit | a690e564d82a46c4e729d88fcc660e4e2f1e6ceb (patch) | |
| tree | c40c404eb61a73168050d7b57fd5bbd5709084dd /src/type_alias.h | |
| parent | 17690b812b7d59a7f37c858a55b25be91a02ff4c (diff) | |
add show trait
Diffstat (limited to 'src/type_alias.h')
| -rw-r--r-- | src/type_alias.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/type_alias.h b/src/type_alias.h index 8f818ed..fbee6ef 100644 --- a/src/type_alias.h +++ b/src/type_alias.h @@ -5,10 +5,10 @@ #include <stdbool.h> typedef bool Bool; -typedef int32_t Int; -typedef int64_t Long; -typedef uint32_t UInt; -typedef uint64_t ULong; +typedef int Int; +typedef long long Long; +typedef unsigned int UInt; +typedef unsigned long long ULong; typedef char Char; typedef float Float; typedef double Double; |
