summaryrefslogtreecommitdiff
path: root/kernel/includes
diff options
context:
space:
mode:
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;