From: hgn Date: Mon, 18 Dec 2023 00:28:12 +0000 (+0000) Subject: add bool type X-Git-Url: https://harrygodden.com/git/?p=vg.git;a=commitdiff_plain;h=f4c590248d15c594905187ca4d7eab23cfa231d5 add bool type --- diff --git a/vg_stdint.h b/vg_stdint.h index 7a06fbe..f3e9128 100644 --- a/vg_stdint.h +++ b/vg_stdint.h @@ -13,5 +13,6 @@ typedef int32_t i32; typedef int64_t i64; typedef float f32; typedef double f64; +typedef uint8_t bool; #endif /* VG_STDINT_H */