summaryrefslogtreecommitdiff
path: root/kernel/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/types.h')
-rw-r--r--kernel/types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/types.h b/kernel/types.h
new file mode 100644
index 0000000..4fdca6b
--- /dev/null
+++ b/kernel/types.h
@@ -0,0 +1,11 @@
+#ifndef TYPES_H
+#define TYPES_H
+
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+typedef signed short int16_t;
+typedef unsigned short uint16_t;
+typedef signed int int32_t;
+typedef unsigned int uint32_t;
+
+#endif