summary refs log tree commit diff
path: root/sysdeps/wordsize-64/wcstol.c
blob: fcfbcf36fa1a853331c18e68e096c525add06a54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* We have to irritate the compiler a bit.  */
#define __wcstoll_internal __wcstoll_internal_XXX
#define wcstoll wcstoll_XXX
#define wcstoq wcstoq_XXX

#include <sysdeps/generic/wcstol.c>

#undef __wcstoll_internal
#undef wcstoll
#undef wcstoq
strong_alias (__wcstol_internal, __wcstoll_internal)
weak_alias (wcstol, wcstoll)
weak_alias (wcstol, wcstoq)