* config/os/mingw32-w64/os_defines.h (__USE_MINGW_ANSI_STDIO): Define.

From-SVN: r182660
This commit is contained in:
Kai Tietz 2011-12-23 18:23:38 +01:00 committed by Kai Tietz
parent 94dcac11e5
commit 737be29e4c
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-12-23 Kai Tietz <ktietz@redhat.com>
* config/os/mingw32-w64/os_defines.h (__USE_MINGW_ANSI_STDIO): Define.
2011-12-23 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/c_global/cinttypes: Update comments that refer to TR1.

View File

@ -45,6 +45,12 @@
#undef NOMINMAX
#define NOMINMAX 1
// Make sure that POSIX printf/scanf functions are activated. As
// libstdc++ depends on POSIX-definitions of those functions, we define
// it unconditionally.
#undef __USE_MINGW_ANSI_STDIO
#define __USE_MINGW_ANSI_STDIO 1
#if defined (_GLIBCXX_DLL)
#define _GLIBCXX_PSEUDO_VISIBILITY_default __attribute__ ((__dllimport__))
#else