about 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.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/types.h b/include/types.h
deleted file mode 100644
index 4bf1da9..0000000
--- a/include/types.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#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 uint64_t i64;
-
-typedef int8_t   i8;
-typedef int16_t  i16;
-typedef int32_t  i32;
-typedef uint64_t i64;
-
-#endif /* __TYPES_H__ */