summaryrefslogtreecommitdiff
path: root/typ.h
diff options
context:
space:
mode:
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