mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 06:15:21 +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
7 lines
87 B
C
7 lines
87 B
C
#include <math.h>
|
|
|
|
long double ldexpl(long double x, int n)
|
|
{
|
|
return scalbnl(x, n);
|
|
}
|