diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-14 16:40:38 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-14 16:40:38 +0000 |
commit | 1e95c98edd8912b6ddaeb914fa314136ef81f7a4 (patch) | |
tree | 8dbb50667125c09a4288e902cc875bf0f2d88bc7 /libquadmath/printf | |
parent | ecd1128f5b9ff2e748b2aa54db917c800a7b1ee6 (diff) | |
download | gcc-1e95c98edd8912b6ddaeb914fa314136ef81f7a4.tar.gz |
* configure.ac (HAVE_HIDDEN_VISIBILITY): Test with -Werror in CFLAGS.
* printf/printf_fp.c: Don't include <alloca.h>.
* printf/quadmath-printf.h (_itoa): Redefine to __quadmath_itoa.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170139 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libquadmath/printf')
-rw-r--r-- | libquadmath/printf/printf_fp.c | 1 | ||||
-rw-r--r-- | libquadmath/printf/quadmath-printf.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libquadmath/printf/printf_fp.c b/libquadmath/printf/printf_fp.c index d3063ebf490..4d0bf18ce48 100644 --- a/libquadmath/printf/printf_fp.c +++ b/libquadmath/printf/printf_fp.c @@ -20,7 +20,6 @@ 02111-1307 USA. */ #include <config.h> -#include <alloca.h> #include <float.h> #include <math.h> #include <string.h> diff --git a/libquadmath/printf/quadmath-printf.h b/libquadmath/printf/quadmath-printf.h index 16092bfe1bc..796df200027 100644 --- a/libquadmath/printf/quadmath-printf.h +++ b/libquadmath/printf/quadmath-printf.h @@ -165,3 +165,6 @@ __quadmath_do_putc (struct __quadmath_printf_file *fp, int wide, #define nl_langinfo_wc(x) \ ({ union { const char *mb; wchar_t wc; } u; u.mb = nl_langinfo (x); u.wc; }) + +#undef _itoa +#define _itoa __quadmath_itoa |