added prototype for File-reading to main.c
This commit is contained in:
parent
8bd4898440
commit
e90cd80fbe
|
@ -35,6 +35,10 @@ void setup(void)
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
setup();
|
setup();
|
||||||
|
|
||||||
|
FILE* input = fopen("program.gem", "r");
|
||||||
|
|
||||||
|
yyin = input;
|
||||||
|
|
||||||
yyparse();
|
yyparse();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue