nctref/src/cg.h

9 lines
75 B
C
Raw Normal View History

2023-08-27 19:48:06 +03:00
#ifndef H_CG
#define H_CG
#include"ast.h"
2024-11-20 16:36:17 +02:00
int cg_go(union AST*);
2023-08-27 19:48:06 +03:00
#endif