1 #include <stdio.h>
2 
3 extern long double __cdecl
4 __mingw_wcstold (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr);
5 
6 double __cdecl
7 __mingw_wcstod (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr);
8 
9 double __cdecl
__mingw_wcstod(const wchar_t * __restrict__ _Str,wchar_t ** __restrict__ _EndPtr)10 __mingw_wcstod (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr)
11 {
12   return (double) __mingw_wcstold (_Str, _EndPtr);
13 }
14 
15 
16