mirror of https://git.tukaani.org/xz.git
lzmainfo: Use setmode() on DOS-like systems.
This commit is contained in:
parent
ef364d3abc
commit
acbc4cdecb
|
@ -20,6 +20,11 @@
|
||||||
#include "tuklib_progname.h"
|
#include "tuklib_progname.h"
|
||||||
#include "tuklib_exit.h"
|
#include "tuklib_exit.h"
|
||||||
|
|
||||||
|
#ifdef TUKLIB_DOSLIKE
|
||||||
|
# include <fcntl.h>
|
||||||
|
# include <io.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static void lzma_attribute((noreturn))
|
static void lzma_attribute((noreturn))
|
||||||
help(void)
|
help(void)
|
||||||
|
@ -171,6 +176,10 @@ main(int argc, char **argv)
|
||||||
|
|
||||||
parse_args(argc, argv);
|
parse_args(argc, argv);
|
||||||
|
|
||||||
|
#ifdef TUKLIB_DOSLIKE
|
||||||
|
setmode(STDIN_FILENO, O_BINARY);
|
||||||
|
#endif
|
||||||
|
|
||||||
int ret = EXIT_SUCCESS;
|
int ret = EXIT_SUCCESS;
|
||||||
|
|
||||||
// We print empty lines around the output only when reading from
|
// We print empty lines around the output only when reading from
|
||||||
|
|
Loading…
Reference in New Issue