From f3c7d7fbdea1f2bac81909116ddb747a1f8abdf5 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 22 Nov 2023 00:47:55 +0100 Subject: Meta: Cleanup of header files such that they are partially shared The /include directory contains definitons that both the kernel and libc need to be in sync. --- include/typedefs.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/typedefs.h (limited to 'include/typedefs.h') diff --git a/include/typedefs.h b/include/typedefs.h new file mode 100644 index 0000000..e290716 --- /dev/null +++ b/include/typedefs.h @@ -0,0 +1,11 @@ +#include + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; + +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; -- cgit v1.2.3