mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
773e305efc
Remove __strto*_l inlines. * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l. * stdlib/strtod.c: Add libc_hidden_def. * stdlib/strtod_l.c: Likewise. * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto for __new_strtold and __new_wcstold. * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for __STRTOF, STRTOF. * stdlib/strtol.c: Add libc_hidden_def. * stdlib/strtol_l.c: Likewise. * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and strtoq. * scripts/data/localplt-powerpc-linux-gnu.data: New file. * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ... * scripts/data/localplt-generic.data: ... here. * elf/Makefile (check-data): Get generic file if no other. ($(objpfx)check-localplt.out): Make target unconditional.
17 lines
468 B
C
17 lines
468 B
C
/* We have to irritate the compiler a bit. */
|
|
#define __strtoll_internal __strtoll_internal_XXX
|
|
#define strtoll strtoll_XXX
|
|
#define strtoq strtoq_XXX
|
|
|
|
#include <stdlib/strtol.c>
|
|
|
|
#undef __strtoll_internal
|
|
#undef strtoll
|
|
#undef strtoq
|
|
strong_alias (__strtol_internal, __strtoll_internal)
|
|
libc_hidden_ver (__strtol_internal, __strtoll_internal)
|
|
weak_alias (strtol, strtoll)
|
|
libc_hidden_ver (strtol, strtoll)
|
|
weak_alias (strtol, strtoq)
|
|
libc_hidden_ver (strtol, strtoq)
|