From: hgn Date: Sat, 13 May 2023 02:11:52 +0000 (+0100) Subject: sized float types X-Git-Url: https://harrygodden.com/git/?p=vg.git;a=commitdiff_plain;h=295cd98f60ba5d03a4fa55fe7d12eaa5340f9a14 sized float types --- 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 */