summaryrefslogtreecommitdiff
path: root/kernel/includes
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-13 15:13:28 +0100
committerAnton Kling <anton@kling.gg>2023-11-13 15:15:08 +0100
commite7b5cb7ca649455b926d6e8494c8dd7d6aed9ad0 (patch)
tree2acb16184c2e4ef02f713f170ae1119b1465cd9f /kernel/includes
parent359ea12aeee4dd6dfb79c9ba44d7059714e4fa95 (diff)
Kernel: Add typedefs.h
Diffstat (limited to 'kernel/includes')
-rw-r--r--kernel/includes/typedefs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/includes/typedefs.h b/kernel/includes/typedefs.h
new file mode 100644
index 0000000..e290716
--- /dev/null
+++ b/kernel/includes/typedefs.h
@@ -0,0 +1,11 @@
+#include <stdint.h>
+
+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;