mirror of https://git.tukaani.org/xz.git
MSVC: xz: Use _isatty() from <io.h> to implement isatty().
This commit is contained in:
parent
d14bba8fc2
commit
e241051f50
|
@ -15,6 +15,11 @@
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
# include <io.h>
|
||||||
|
# define isatty _isatty
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// Number of the current file
|
/// Number of the current file
|
||||||
static unsigned int files_pos = 0;
|
static unsigned int files_pos = 0;
|
||||||
|
|
|
@ -13,6 +13,11 @@
|
||||||
#include "private.h"
|
#include "private.h"
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
# include <io.h>
|
||||||
|
# define isatty _isatty
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// Buffers for uint64_to_str() and uint64_to_nicestr()
|
/// Buffers for uint64_to_str() and uint64_to_nicestr()
|
||||||
static char bufs[4][128];
|
static char bufs[4][128];
|
||||||
|
|
Loading…
Reference in New Issue