removed cygwin code path

it's not useful :
cygwin uses the posix code path

fix #100
This commit is contained in:
Yann Collet 2020-02-10 16:36:38 -08:00
parent 48022182ac
commit 6a4e870843

View File

@ -93,7 +93,7 @@
|| defined(__MSYS__)
# include <unistd.h> /* isatty */
# define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
#elif defined(MSDOS) || defined(OS2) || defined(__CYGWIN__)
#elif defined(MSDOS) || defined(OS2)
# include <io.h> /* _isatty */
# define IS_CONSOLE(stdStream) _isatty(_fileno(stdStream))
#elif defined(WIN32) || defined(_WIN32)