blob: a5001ba83ffacd90edc6a1339bbe0d19b634b193 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* We have to irritate the compiler a bit. */
#define ____wcstoull_l_internal ____wcstoull_l_internal_XXX
#define __wcstoull_l ___wcstoull_l_XXX
#define wcstoull_l __wcstoull_l_XXX
#define __isoc23_wcstoull_l __isoc23_wcstoull_l_XXX
#include <wcsmbs/wcstoul_l.c>
#undef ____wcstoull_l_internal
#undef __wcstoull_l
#undef wcstoull_l
#undef __isoc23_wcstoull_l
strong_alias (____wcstoul_l_internal, ____wcstoull_l_internal)
weak_alias (__wcstoul_l, __wcstoull_l)
weak_alias (__wcstoul_l, wcstoull_l)
weak_alias (__isoc23_wcstoul_l, __isoc23_wcstoull_l)
libc_hidden_ver (__isoc23_wcstoul_l, __isoc23_wcstoull_l)
|