]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - fs.c
Fixes
[xonotic/gmqcc.git] / fs.c
diff --git a/fs.c b/fs.c
index e39858a0ed9fd3619abc6c8aca8b51721f42f201..997b368b13ce6bf801ff5637b9689ae464e853b0 100644 (file)
--- a/fs.c
+++ b/fs.c
@@ -165,11 +165,6 @@ int fs_file_seek(FILE *fp, long int off, int whence) {
     return fseek(fp, off, whence);
 }
 
-int fs_file_flush(FILE *fp) {
-    /* Invokes file_exception on windows if fp is null */
-    return fflush(fp);
-}
-
 long int fs_file_tell(FILE *fp) {
     /* Invokes file_exception on windows if fp is null */
     return ftell(fp);