summaryrefslogtreecommitdiff
path: root/typ.h
diff options
context:
space:
mode:
authorWormHeamer2025-10-28 02:01:40 -0400
committerWormHeamer2025-10-28 02:01:40 -0400
commit2bbb581678fb4871a4211fc96d12fa69c110b693 (patch)
tree4f895f2e2cda89a7201a9e4c702331d023d8ed58 /typ.h
parent934b4b2ab0a0970bf22083e1b38722e39f67d642 (diff)
add i8, u8
Diffstat (limited to 'typ.h')
-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;