summaryrefslogtreecommitdiff
path: root/src/heads/codegen.h
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2025-12-21 21:24:46 +0100
committerczjstmax <jstmaxlol@disroot.org>2025-12-21 21:24:46 +0100
commit9201d978d0c4d4f4bdffd4e686ef116d7fdaa982 (patch)
treed78d98f3b157d39b2353165445b4a47569658da0 /src/heads/codegen.h
parent05033cc80fc9839e402106ae60e92b69266d1595 (diff)
Fixed `#include` directives for `heads/` folder in `rbc.c`
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'src/heads/codegen.h')
-rw-r--r--src/heads/codegen.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/heads/codegen.h b/src/heads/codegen.h
new file mode 100644
index 0000000..d629caf
--- /dev/null
+++ b/src/heads/codegen.h
@@ -0,0 +1,13 @@
+#ifndef CRBC_CODEGEN
+#define CRBC_CODEGEN
+
+// Header file for CReborn's Codegen API
+
+#include <stdlib.h>
+#include <string.h>
+
+static inline int fb(int x) {
+ return x;
+}
+
+#endif