mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 17:23:09 +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
108 B
C
Vendored
7 lines
108 B
C
Vendored
#include <stdlib.h>
|
|
|
|
lldiv_t lldiv(long long num, long long den)
|
|
{
|
|
return (lldiv_t){ num/den, num%den };
|
|
}
|