summaryrefslogtreecommitdiffstats
path: root/kernel/types.h
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-11-03 10:47:18 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2015-11-03 10:47:18 +0100
commited28a49f16f004c36db0fd4963f61df9d4a3abf7 (patch)
tree3a691e6965e52cb9c3c523283b5f34c9cdd0a0a9 /kernel/types.h
parent9ee01470ef6424ea448a7eddc00c1f936727b460 (diff)
downloadjeyzuos-ed28a49f16f004c36db0fd4963f61df9d4a3abf7.zip
jeyzuos-ed28a49f16f004c36db0fd4963f61df9d4a3abf7.tar.gz
add tty.c tty.h for terminal handling
Diffstat (limited to 'kernel/types.h')
-rw-r--r--kernel/types.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/types.h b/kernel/types.h
new file mode 100644
index 0000000..5065af7
--- /dev/null
+++ b/kernel/types.h
@@ -0,0 +1,16 @@
+#ifndef _TYPES_H_
+#define _TYPES_H_
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <stddef.h>
+
+typedef unsigned char uchar;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+
+/* #define NULL 0 */
+
+#endif
+