diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-06-28 00:06:40 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-06-28 00:52:08 +0300 |
commit | ebad5ad23dc6893b0fb75ba04aa961a25a532b5f (patch) | |
tree | c025946d4248b46aceae3e15c19efd29b2d12af2 /tests/types.c | |
parent | 28bb6070e64f25aa6ff64f81b59a7f52e12d4092 (diff) |
Finished hash_map implementation
TODO: fix that one linked list function
Diffstat (limited to 'tests/types.c')
-rw-r--r-- | tests/types.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/types.c b/tests/types.c index 4320e8d..94d6cbe 100644 --- a/tests/types.c +++ b/tests/types.c @@ -1,7 +1,8 @@ #include <stdio.h> +#define RS_TYPES_USE_128 #include "../include/rstypes.h" -i32 main() { +i32 main(void) { u8 a = 215; i8 b = -127; u16 c = 65535; |