aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.h
blob: 2c1d7b31cc84bb4dffb3446060c580c08233fa97 (plain)
1
2
3
4
5
6
7
8
#ifndef DUCC_CODEGEN_H
#define DUCC_CODEGEN_H

#include "ast.h"

void codegen(Program* prog, const char* input_filename, FILE* out);

#endif