Pali Rohár <[email protected]> wrote: > Those changes looks good. > > Just one thing, for me it looks quite strange to call wprintf() with > ASCII-only strings. printf() in this case should be enough for 7-bit ASCII.
I've got this habit of using primarily wide stdio functions while working on posix32 library. I think using them is the right thing on Windows, although I'm not going to try to force anyone to do the same. However, this reminded me that with msvcrt.dll, we will end up using mingw-w64's `wprintf`, which pulls in pretty large amount of static code. I think we could add ``` #define __USE_MINGW_ANSI_STDIO 0 ``` before including any header file. Can this little fix-up be added after applying the patch? - Kirill Makurin _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
