Re: [Mingw-w64-public] inttypes.h section (__CRTDLL__ || __MSVCRT_VERSION__ < 0x200) is always disabled

2023-02-15 Thread LIU Hao
在 2023/2/16 02:12, Christian Franke 写道: This check in line 282 of inttypes.h is always false because __USE_MINGW_ANSI_STDIO is always defined to 0 or 1 in _mingw.h: #if (defined(__CRTDLL__) || __MSVCRT_VERSION__ < 0x200) && !defined(__USE_MINGW_ANSI_STDIO) No patch included because I don't kn

[Mingw-w64-public] inttypes.h section (__CRTDLL__ || __MSVCRT_VERSION__ < 0x200) is always disabled

2023-02-15 Thread Christian Franke
This check in line 282 of inttypes.h is always false because __USE_MINGW_ANSI_STDIO is always defined to 0 or 1 in _mingw.h: #if (defined(__CRTDLL__) || __MSVCRT_VERSION__ < 0x200) && !defined(__USE_MINGW_ANSI_STDIO) No patch included because I don't know whether this section is still needed