mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 02:50:09 +00:00
11 lines
351 B
C
11 lines
351 B
C
|
/* We have to irritate the compiler a bit. */
|
||
|
#define ____strtoull_l_internal ____strtoull_l_internal_XXX
|
||
|
#define __strtoull_l __strtoull_l_XXX
|
||
|
|
||
|
#include <sysdeps/generic/strtoul_l.c>
|
||
|
|
||
|
#undef ____strtoull_l_internal
|
||
|
#undef __strtoull_l
|
||
|
strong_alias (____strtoul_l_internal, ____strtoull_l_internal)
|
||
|
weak_alias (____strtoull_l_internal, __strtoull_l)
|