summaryrefslogtreecommitdiff
path: root/headers/codegen.h
diff options
context:
space:
mode:
Diffstat (limited to 'headers/codegen.h')
-rw-r--r--headers/codegen.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/headers/codegen.h b/headers/codegen.h
new file mode 100644
index 0000000..d629caf
--- /dev/null
+++ b/headers/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