blob: 235e1e3d29fbb25993cb7dbb757bddd84762252a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* We have to irritate the compiler a bit. */
#define __wcstoull_internal __wcstoull_internal_XXX
#define wcstoull wcstoull_XXX
#include <sysdeps/generic/wcstoul.c>
#undef __wcstoull_internal
#undef wcstoull
strong_alias (__wcstoul_internal, __wcstoull_internal)
weak_alias (__wcstoull_internal, wcstoull)
|