From f4c590248d15c594905187ca4d7eab23cfa231d5 Mon Sep 17 00:00:00 2001 From: hgn Date: Mon, 18 Dec 2023 00:28:12 +0000 Subject: [PATCH] add bool type --- vg_stdint.h | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.25.1