summaryrefslogtreecommitdiff
path: root/typ.h
diff options
context:
space:
mode:
authorWormHeamer2025-10-28 02:10:20 -0400
committerWormHeamer2025-10-28 02:10:20 -0400
commitf360f57c45073b5e9ea74da442174b53020d15ec (patch)
tree9d49d355288a2c16e7bf86692049c67bd3d30e15 /typ.h
parent70a96b84946ad994051b3a378789507e2283a6d5 (diff)
parent89bc739611419ba52a6e6e692e9fd965ffa7d837 (diff)
Merge branch 'dev'
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;