mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-21 16:41:56 +03:00
49d1a4c562
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);
|
|
}
|