1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include "commonbase.h" #if WINDOOF #include <fcntl.h> #include <stdio.h> #include <windows.h> void fixBrokenStdio( void ){ _setmode(_fileno(stdin), O_BINARY); _setmode(_fileno(stdout), O_BINARY); } #endif /* end WINDOOF */