From 295cd98f60ba5d03a4fa55fe7d12eaa5340f9a14 Mon Sep 17 00:00:00 2001 From: hgn Date: Sat, 13 May 2023 03:11:52 +0100 Subject: [PATCH] sized float types --- vg_stdint.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vg_stdint.h b/vg_stdint.h index fb1a62d..7a06fbe 100644 --- a/vg_stdint.h +++ b/vg_stdint.h @@ -11,5 +11,7 @@ typedef int8_t i8; typedef int16_t i16; typedef int32_t i32; typedef int64_t i64; +typedef float f32; +typedef double f64; #endif /* VG_STDINT_H */ -- 2.25.1