blob: 2997afa6c296137910dfba176daf403bf17d4c14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* 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)
|