From 2bbb581678fb4871a4211fc96d12fa69c110b693 Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Tue, 28 Oct 2025 02:01:40 -0400 Subject: add i8, u8 --- typ.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/typ.h b/typ.h index 9ed65ea..a59378f 100644 --- a/typ.h +++ b/typ.h @@ -4,9 +4,12 @@ #include #include +typedef int8_t i8; typedef int16_t i16; typedef int32_t i32; typedef int64_t i64; + +typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; typedef uint64_t u64; -- cgit v1.2.3