From 567e79a4e8b61a53d313eb42e5f6891d3aad999b Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 26 Jun 2025 04:19:49 +0200 Subject: [PATCH] Some shorthand typedef used around the kernel --- types.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 types.h diff --git a/types.h b/types.h new file mode 100644 index 0000000..f0780a4 --- /dev/null +++ b/types.h @@ -0,0 +1,6 @@ +#pragma once + +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned int u32; +typedef unsigned long u64;