diff options
Diffstat (limited to 'perform/zip_perf.c')
-rw-r--r-- | perform/zip_perf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/zip_perf.c b/perform/zip_perf.c index ad760ed..f5be6a0 100644 --- a/perform/zip_perf.c +++ b/perform/zip_perf.c @@ -43,13 +43,13 @@ #include <zlib.h> -#if defined(MSDOS) || defined(OS2) || defined(WIN32) +#if defined(MSDOS) || defined(OS2) || defined(_WIN32) # include <fcntl.h> # include <io.h> # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) #else # define SET_BINARY_MODE(file) /* nothing */ -#endif /* MSDOS || OS2 || WIN32 */ +#endif /* MSDOS || OS2 || _WIN32 */ #ifdef VMS # define unlink delete |