* printcmd.c: define PRINTF_HAS_LONG_LONG only if not yet defined.

This commit is contained in:
Joel Brobecker 2008-11-13 22:26:15 +00:00
parent 759cc328c6
commit 06be140c21
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-11-13 Joel Brobecker <brobecker@adacore.com>
* printcmd.c: define PRINTF_HAS_LONG_LONG only if not yet defined.
2008-11-13 Ulrich Weigand <uweigand@de.ibm.com>
* auxv.c (fprint_target_auxv): Handle AT_BASE_PLATFORM and

View File

@ -48,7 +48,7 @@
#include "tui/tui.h" /* For tui_active et.al. */
#endif
#if defined(__MINGW32__)
#if defined(__MINGW32__) && !defined(PRINTF_HAS_LONG_LONG)
# define USE_PRINTF_I64 1
# define PRINTF_HAS_LONG_LONG
#else