From dfc387644939aada1edb69f8f730e62f116f1ae3 Mon Sep 17 00:00:00 2001 From: mattkae Date: Sun, 1 May 2022 18:37:59 -0400 Subject: Fetching bunny model --- themes/types.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'themes/types.h') diff --git a/themes/types.h b/themes/types.h index 7bac7f3..d5c7938 100644 --- a/themes/types.h +++ b/themes/types.h @@ -2,15 +2,15 @@ #include -typedef int8_t int8; -typedef int16_t int16; -typedef int32_t int32; -typedef int64_t int64; +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; -typedef uint8_t uint8; -typedef uint16_t uint16; -typedef uint32_t uint32; -typedef unsigned long uint64; +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef unsigned long u64; -typedef float float32; -typedef double float64; +typedef float f32; +typedef double f64; -- cgit v1.2.1