summaryrefslogtreecommitdiff
path: root/prelude/include/lcq/prelude.h
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-07-09 23:51:55 -0400
committerLLLL Colonq <llll@colonq>2026-07-09 23:51:55 -0400
commit2bdcaf319b1d74ffbaccf08a58336f804761beab (patch)
treec21de6df74ec79b5574ad2b89fcc275d10847802 /prelude/include/lcq/prelude.h
Refactor into monorepo
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