From 000f290ff179c9910f09b7f76797bdab575abb15 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 28 Feb 2018 14:16:21 +0000 Subject: Use libc_hidden_* for strtoumax (bug 15105). On sparc, localplt test failures appear when building with -Os because of a call to strtoumax from sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c, and strtoumax is not inlined when building with -Os. This patch fixes those failures by using libc_hidden_proto and libc_hidden_def for strtoumax. Tested with build-many-glibcs.py for sparc64-linux-gnu-disable-multi-arch, sparc64-linux-gnu, sparcv9-linux-gnu-disable-multi-arch, sparcv9-linux-gnu that this fixes that test failure with -Os. [BZ #15105] * sysdeps/wordsize-32/strtoumax.c (strtoumax): Use libc_hidden_def. * sysdeps/wordsize-64/strtoumax.c (strtoumax): Likewise. * include/inttypes.h: New file. --- include/inttypes.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 include/inttypes.h (limited to 'include/inttypes.h') diff --git a/include/inttypes.h b/include/inttypes.h new file mode 100644 index 0000000000..33219e2a9f --- /dev/null +++ b/include/inttypes.h @@ -0,0 +1,6 @@ +#ifndef _INTTYPES_H +#include_next +#ifndef _ISOMAC +libc_hidden_proto (strtoumax) +#endif +#endif -- cgit v1.2.3