parent
6d249dd9ea
commit
4976aeb22f
|
@ -40,16 +40,15 @@ int main(void) {
|
||||||
|
|
||||||
FILE* input = fopen("program.gem", "r");
|
FILE* input = fopen("program.gem", "r");
|
||||||
|
|
||||||
if (NULL == Input)
|
if (NULL == input)
|
||||||
{
|
{
|
||||||
ERROR("File couldn't be opened!");
|
ERROR("File couldn't be opened!");
|
||||||
atexit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
yyin = input;
|
yyin = input;
|
||||||
|
|
||||||
yyparse();
|
yyparse();
|
||||||
|
|
||||||
atexit();
|
atexit(input);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue