Restore S_IWUSR compatibility define for Windows.
diff --git a/lib/zip_source_file_stdio.c b/lib/zip_source_file_stdio.c
index c95c0c0..4e08d6e 100644
--- a/lib/zip_source_file_stdio.c
+++ b/lib/zip_source_file_stdio.c
@@ -41,6 +41,12 @@
 #include <stdlib.h>
 #include <sys/stat.h>
 
+#ifdef _WIN32
+#  ifndef S_IWUSR
+#    define S_IWUSR _S_IWRITE
+#  endif
+#endif
+
 zip_source_file_operations_t ops_stdio_read = {
     _zip_stdio_op_close,
     NULL,