Merging upstream version 1.0~rc7.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
70fca17fa7
commit
59f5545caa
15 changed files with 82 additions and 55 deletions
7
zcmp.cc
7
zcmp.cc
|
@ -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() )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue