1 #define wcstold wcstold_XXX
2 #include "nldbl-compat.h"
3 #undef wcstold
4 
5 double
6 attribute_hidden
wcstold(const wchar_t * nptr,wchar_t ** endptr)7 wcstold (const wchar_t *nptr, wchar_t **endptr)
8 {
9   return wcstod (nptr, endptr);
10 }
11