]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ansi.c
More cleanups
[xonotic/gmqcc.git] / ansi.c
diff --git a/ansi.c b/ansi.c
index 26604fe3b7166b81e97df642d6e4130ce1ad20bd..a6b2eda77ec42735d1adef8891b0ad1e0059a77e 100644 (file)
--- a/ansi.c
+++ b/ansi.c
@@ -96,6 +96,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(stream, format, arg);
 }