summary refs log tree commit diff
path: root/include/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h
new file mode 100644
index 0000000..9c92d57
--- /dev/null
+++ b/include/types.h
@@ -0,0 +1,17 @@
+#ifndef __TYPES_H__
+#define __TYPES_H__
+
+#include <stdint.h>
+
+
+typedef char     s8;
+
+typedef uint8_t  u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
+
+typedef int8_t   i8;
+typedef int16_t  i16;
+typedef int32_t  i32;
+
+#endif /* __TYPES_H__ */