Makefile.am: Clean flake8-check too.
[cascardo/ovs.git] / lib / stdio.c
index 49a5078..5c5c924 100644 (file)
@@ -17,6 +17,7 @@
 #include <config.h>
 
 #include <stdio.h>
+#include <sys/types.h>
 
 #ifdef _WIN32
 #undef snprintf
@@ -45,4 +46,15 @@ ovs_vsnprintf(char *s, size_t n, const char *format, va_list args)
     }
     return needed;
 }
+
+int
+fseeko(FILE *stream, off_t offset, int whence)
+{
+    int error;
+    error = _fseeki64(stream, offset, whence);
+    if (error) {
+        return -1;
+    }
+    return error;
+}
 #endif  /* _WIN32 */