aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-09-18 14:28:12 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit142a13ad3f77c0ad1bd321d1a1f864a5117896d1 (patch)
tree9e7c89d3e1960ca833b01b4c7aafb27cc8a966b4 /include
parentab0c5259e5a3238e176e4b1aed942f5384a2d0c6 (diff)
Fix import func call build
Diffstat (limited to 'include')
-rw-r--r--include/compiler.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/compiler.h b/include/compiler.h
index 1ed98f3..f6599a1 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -35,6 +35,14 @@ typedef struct {
amal_default_type *usize;
amal_default_type *f32;
amal_default_type *f64;
+ amal_default_type *bool;
+
+ amal_default_type *c_char;
+ amal_default_type *c_short;
+ amal_default_type *c_int;
+ amal_default_type *c_long;
+ amal_default_type *c_void;
+
amal_default_type *str;
amal_default_type *arithmetic_types[NUM_ARITHMETIC_TYPES];