Fix gzopen_w() type and add #include for the type.

This commit is contained in:
Mark Adler
2012-03-17 21:42:30 -07:00
parent 2c42538c2e
commit a1af6e96e3
3 changed files with 6 additions and 2 deletions

View File

@@ -27,6 +27,10 @@
#endif
#include <fcntl.h>
#ifdef _WIN32
# include <stddef.h>
#endif
#if defined(__TURBOC__) || defined(_MSC_VER) || defined(_WIN32)
# include <io.h>
#endif