aboutsummaryrefslogtreecommitdiff
path: root/include/std/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/std/types.h')
-rw-r--r--include/std/types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/std/types.h b/include/std/types.h
index a8a44fd..bbf31c5 100644
--- a/include/std/types.h
+++ b/include/std/types.h
@@ -20,4 +20,13 @@ typedef size_t usize;
typedef float f32;
typedef double f64;
+typedef enum {
+ bool_false,
+ bool_true
+} bool;
+
+#ifndef NULL
+#define NULL ((void*)0)
+#endif
+
#endif