diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:25:23 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:25:23 +0000 |
commit | 8566aaafaa90f4d8225628f26b5d394292165a57 (patch) | |
tree | c652849f0274c7b8d1a5103faf77dd040ae9d8ca /zcmp.cc | |
parent | Adding upstream version 1.0~rc6. (diff) | |
download | zutils-8566aaafaa90f4d8225628f26b5d394292165a57.tar.xz zutils-8566aaafaa90f4d8225628f26b5d394292165a57.zip |
Adding upstream version 1.0~rc7.upstream/1.0_rc7
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | zcmp.cc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -31,6 +31,9 @@ #include <stdint.h> #include <unistd.h> #include <sys/stat.h> +#if defined(__MSVCRT__) || defined(__OS2__) +#include <io.h> +#endif #include "arg_parser.h" #include "zutils.h" @@ -357,8 +360,8 @@ int main( const int argc, const char * const argv[] ) } // end process options #if defined(__MSVCRT__) || defined(__OS2__) - _fsetmode( stdin, "b" ); - _fsetmode( stdout, "b" ); + setmode( STDIN_FILENO, O_BINARY ); + setmode( STDOUT_FILENO, O_BINARY ); #endif if( argind >= parser.arguments() ) |