fixed warnings in main.c regarding whiteapace and declaration of main

This commit is contained in:
Sven Vogel 2024-04-12 18:20:18 +02:00
parent 488acc9b1f
commit 95f6b4ddc1
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ void setup(void)
DEBUG("finished starting up gemstone...");
}
int main() {
int main(void) {
setup();
yyparse();
return 0;
}
}