mirror of
https://github.com/ziglang/zig.git
synced 2026-01-30 11:13:38 +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
9 lines
121 B
C
9 lines
121 B
C
#include <math.h>
|
|
|
|
/* uses LLONG_MAX > 2^53, see comments in lrint.c */
|
|
|
|
long long llrint(double x)
|
|
{
|
|
return rint(x);
|
|
}
|