summaryrefslogtreecommitdiff
path: root/kernel/types.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2009-12-23 22:26:43 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2009-12-23 22:31:02 +0100
commit864fb03a3305b65fedbe434ebb87510ac13fe865 (patch)
tree6b0b2b0dccf6fd1835a4e86ba808fbad2cba89cb /kernel/types.h
Initial commit.
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