aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen.h')
-rw-r--r--src/codegen.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/codegen.h b/src/codegen.h
new file mode 100644
index 0000000..95ec069
--- /dev/null
+++ b/src/codegen.h
@@ -0,0 +1,8 @@
+#ifndef DUCC_CODEGEN_H
+#define DUCC_CODEGEN_H
+
+#include "ast.h"
+
+void codegen(Program* prog, FILE* out);
+
+#endif