mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 15:00:06 +00:00
15 lines
362 B
C
15 lines
362 B
C
#define wcstold_l wcstold_l_XXX
|
|||
#define __wcstold_l __wcstold_l_XXX
|
|||
#include "nldbl-compat.h"
|
|||
#undef wcstold_l
|
|||
#undef __wcstold_l
|
|||
|
|||
double
|
|||
attribute_hidden
|
|||
__wcstold_l (const wchar_t *nptr, wchar_t **endptr, __locale_t loc)
|
|||
{
|
|||
return __wcstod_l (nptr, endptr, loc);
|
|||
}
|
|||
extern __typeof (__wcstold_l) wcstold_l attribute_hidden;
|
|||
weak_alias (__wcstold_l, wcstold_l)
|