Use _WIN32 instead of WIN32 in xzdec.c to test if compiling on Windows.

This commit is contained in:
Lasse Collin 2009-01-31 10:13:09 +02:00
parent 2dbdc5befb
commit d9993fcb4d
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#include <stdio.h>
#include <unistd.h>
#ifdef WIN32
#ifdef _WIN32
# include <fcntl.h>
#endif
@ -407,7 +407,7 @@ main(int argc, char **argv)
lzma_stream strm = LZMA_STREAM_INIT;
// Some systems require setting stdin and stdout to binary mode.
#ifdef WIN32
#ifdef _WIN32
setmode(fileno(stdin), O_BINARY);
setmode(fileno(stdout), O_BINARY);
#endif