framework for typechecking and code generation
[ccc.git] / gen.c
1 #include <stdbool.h>
2
3 #include "ast.h"
4
5 bool gen(struct ast *res)
6 {
7 (void)res;
8 return true;
9 }