mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 15:50:06 +00:00
c0b338331e
2002-08-08 Jakub Jelinek <jakub@redhat.com> * sysdeps/wordsize-64/wcstol_l.c (wcstoll_l): Define to something else and undefine after including wcstol_l.c. * sysdeps/wordsize-64/wcstoul_l.c (wcstoull_l): Similarly.
14 lines
431 B
C
14 lines
431 B
C
/* 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
|
|
|
|
#include <sysdeps/generic/wcstoul_l.c>
|
|
|
|
#undef ____wcstoull_l_internal
|
|
#undef __wcstoull_l
|
|
#undef wcstoull_l
|
|
strong_alias (____wcstoul_l_internal, ____wcstoull_l_internal)
|
|
weak_alias (__wcstoul_l, __wcstoull_l)
|
|
weak_alias (__wcstoul_l, wcstoull_l)
|