blob: 2289caf4b913ebc9254841e2f6dc66e066db3723 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* We have to irritate the compiler a bit. */
#define ____wcstoull_l_internal ____wcstoull_l_internal_XXX
#define __wcstoull_l __wcstoull_l_XXX
#include <sysdeps/generic/wcstoul_l.c>
#undef ____wcstoull_l_internal
#undef __wcstoull_l
strong_alias (____wcstoul_l_internal, ____wcstoull_l_internal)
weak_alias (__wcstoul_l, __wcstoull_l)
|