shithub: scc

ref: c7fec7be35fc12334a3546c1189ae01cf36db729
dir: /main.c/

View raw version

#include <stddef.h>

extern void open_file(const char *file);
extern void init_lex();
extern void next();
extern void stmt();



int main(int argc, char *argv[])
{
	init_lex();
	open_file(NULL);
	next();
	compound();

	return 0;
}