framework for typechecking and code generation
[ccc.git] / gen.c
diff --git a/gen.c b/gen.c
new file mode 100644 (file)
index 0000000..ab6b6d3
--- /dev/null
+++ b/gen.c
@@ -0,0 +1,9 @@
+#include <stdbool.h>
+
+#include "ast.h"
+
+bool gen(struct ast *res)
+{
+       (void)res;
+       return true;
+}