From bdc2e5cb6381d248a97fa2b935b2eaabfff5ee48 Mon Sep 17 00:00:00 2001 From: Agnosto Dvonik Date: Sat, 17 Feb 2024 15:00:38 -0500 Subject: [PATCH] types --- sys/include/types.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sys/include/types.h diff --git a/sys/include/types.h b/sys/include/types.h new file mode 100644 index 0000000..0c16911 --- /dev/null +++ b/sys/include/types.h @@ -0,0 +1,11 @@ +#ifndef TYPES_H +#define TYPES_H + +typedef unsigned int u32; +typedef unsigned short u16; +typedef unsigned char u8; +typedef int s32; +typedef short s16; +typedef char s8; + +#endif