parent
4976aeb22f
commit
05d603f7ac
12
src/main.c
12
src/main.c
|
@ -35,8 +35,19 @@ void setup(void)
|
|||
DEBUG("finished starting up gemstone...");
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Closes File after compiling.
|
||||
*
|
||||
*/
|
||||
|
||||
void close_file(void)
|
||||
{
|
||||
fclose(input);
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
setup();
|
||||
atexit(close_file);
|
||||
|
||||
FILE* input = fopen("program.gem", "r");
|
||||
|
||||
|
@ -49,6 +60,5 @@ int main(void) {
|
|||
|
||||
yyparse();
|
||||
|
||||
atexit(input);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue