Make open_file() inline

This commit is contained in:
Thomas Rooijakkers
2020-09-04 16:22:22 +02:00
parent 809a7cffe2
commit 50f61b64b1
2 changed files with 6 additions and 7 deletions

View File

@ -29,7 +29,7 @@
/* Open file for writing */
FILE *open_file(const char *fn) {
inline FILE *open_file(const char *fn) {
s32 fd;
FILE *f;