added prototype for File-reading to main.c

This commit is contained in:
SirTalksalot75 2024-04-21 22:48:29 +02:00 committed by GitHub
parent 8bd4898440
commit e90cd80fbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ void setup(void)
int main(void) {
setup();
FILE* input = fopen("program.gem", "r");
yyin = input;
yyparse();
return 0;