From 40d164972423056e8302bd67db9494b6e4b076b3 Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Mon, 27 Oct 2025 23:33:21 -0400 Subject: fix a bunch of warnings --- typ.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 typ.h (limited to 'typ.h') diff --git a/typ.h b/typ.h new file mode 100644 index 0000000..9ed65ea --- /dev/null +++ b/typ.h @@ -0,0 +1,15 @@ +#ifndef TYP_H +#define TYP_H + +#include +#include + +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; +typedef size_t usize; + +#endif -- cgit v1.2.3