shithub: scc

ref: 943fc19936e423b3c349ceea154e4eb6465cc556
dir: /main.c/

View raw version

#include <stddef.h>

#include "tokens.h"
#include "syntax.h"

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





int main(int argc, char *argv[])
{
	init_lex();
	open_file(NULL);
	for (next(); yytoken != EOFTOK; decl())
		/* nothing */;

	return 0;
}