summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--typ.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/typ.h b/typ.h
index 9ed65ea..a59378f 100644
--- a/typ.h
+++ b/typ.h
@@ -4,9 +4,12 @@
#include <stdint.h>
#include <stddef.h>
+typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
+
+typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;