summaryrefslogtreecommitdiff
path: root/prelude/include/lcq/prelude.h
diff options
context:
space:
mode:
Diffstat (limited to 'prelude/include/lcq/prelude.h')
-rw-r--r--prelude/include/lcq/prelude.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/prelude/include/lcq/prelude.h b/prelude/include/lcq/prelude.h
new file mode 100644
index 0000000..946abb8
--- /dev/null
+++ b/prelude/include/lcq/prelude.h
@@ -0,0 +1,18 @@
+#ifndef LCOLONQ_PRELUDE_H
+#define LCOLONQ_PRELUDE_H
+
+#include <stdint.h>
+#include <stdbool.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;
+
+#endif