summaryrefslogtreecommitdiff
path: root/typ.h
diff options
context:
space:
mode:
authorWormHeamer2025-10-27 23:33:21 -0400
committerWormHeamer2025-10-27 23:33:21 -0400
commit40d164972423056e8302bd67db9494b6e4b076b3 (patch)
tree25ff78ade2fcef01cee7339037a0ae745c416d2b /typ.h
parentdd62801133cddca25d94c9c59f8ca7d0748850c6 (diff)
fix a bunch of warnings
Diffstat (limited to 'typ.h')
-rw-r--r--typ.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/typ.h b/typ.h
new file mode 100644
index 0000000..9ed65ea
--- /dev/null
+++ b/typ.h
@@ -0,0 +1,15 @@
+#ifndef TYP_H
+#define TYP_H
+
+#include <stdint.h>
+#include <stddef.h>
+
+typedef int16_t i16;
+typedef int32_t i32;
+typedef int64_t i64;
+typedef uint16_t u16;
+typedef uint32_t u32;
+typedef uint64_t u64;
+typedef size_t usize;
+
+#endif