mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 02:50:09 +00:00
11 lines
309 B
C
11 lines
309 B
C
|
/* 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)
|