diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-03-02 21:20:33 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 5e240bdab90c45f935e7d2b33181de13295e7e6b (patch) | |
tree | 0718d7ca2386292c5b3646d0cb1ae499bb7ba818 /include/std | |
parent | 2a17f5225a09c01eb04225d0241c686ea553f912 (diff) |
Add string, variable and number. Fix identifier match against const and var
Diffstat (limited to 'include/std')
-rw-r--r-- | include/std/types.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/std/types.h b/include/std/types.h index 68e2d0f..a8a44fd 100644 --- a/include/std/types.h +++ b/include/std/types.h @@ -17,4 +17,7 @@ typedef uint64_t u64; typedef ptrdiff_t isize; typedef size_t usize; +typedef float f32; +typedef double f64; + #endif |