]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - msvc.c
More cleanups
[xonotic/gmqcc.git] / msvc.c
diff --git a/msvc.c b/msvc.c
index 54543ffafeb142e0a892be11d92d9a200acafa32..225cd1c6d9cc5aed45a3b11b6e11de2fa41f98c2 100644 (file)
--- a/msvc.c
+++ b/msvc.c
@@ -130,6 +130,10 @@ size_t platform_fwrite(const void *ptr, size_t size, size_t count, FILE *stream)
     return fwrite(ptr, size, count, stream);
 }
 
+int platform_fflush(FILE *stream) {
+    return fflush(stream);
+}
+
 int platform_vfprintf(FILE *stream, const char *format, va_list arg) {
     return vfprintf_s(stream, format, arg);
 }