summaryrefslogtreecommitdiff
path: root/codegen.h
blob: 7c8023c6ccba4585285721fd23d71919a88a6fa1 (plain)
1
2
3
4
5
6
7
8
#ifndef CODEGEN_H
#define CODEGEN_H

#include "ast.h"

void emit_code(struct ast* ast, const char* path);

#endif