mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 07:13:08 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
16 lines
391 B
C
Vendored
16 lines
391 B
C
Vendored
#include <stdio.h>
|
|
|
|
extern long double __cdecl
|
|
__mingw_wcstold (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr);
|
|
|
|
double __cdecl
|
|
__mingw_wcstod (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr);
|
|
|
|
double __cdecl
|
|
__mingw_wcstod (const wchar_t * __restrict__ _Str, wchar_t ** __restrict__ _EndPtr)
|
|
{
|
|
return (double) __mingw_wcstold (_Str, _EndPtr);
|
|
}
|
|
|
|
|