glibc/sysdeps/ieee754/ldbl-opt/nldbl-wcstold.c

11 lines
178 B
C
Raw Normal View History

2007-07-13 02:26:36 +08:00
#define wcstold wcstold_XXX
#include "nldbl-compat.h"
#undef wcstold
double
attribute_hidden
wcstold (const wchar_t *nptr, wchar_t **endptr)
{
return wcstod (nptr, endptr);
}