mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Use _WIN32 instead of WIN32 in xzdec.c to test if compiling on Windows.
This commit is contained in:
parent
2dbdc5befb
commit
d9993fcb4d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue