diff options
-rw-r--r-- | stage3/def.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stage3/def.h b/stage3/def.h index c2f8311..cc3c5df 100644 --- a/stage3/def.h +++ b/stage3/def.h @@ -18,4 +18,8 @@ typedef long i64; typedef u64 usize; typedef i64 isize; +typedef u8 bool; +#define false ((bool) 0) +#define true ((bool) 1) + #endif |