mirror of
https://github.com/ziglang/zig.git
synced 2026-03-13 06:40:36 +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
12 lines
159 B
C
Vendored
12 lines
159 B
C
Vendored
#include "syscall.h"
|
|
|
|
int capset(void *a, void *b)
|
|
{
|
|
return syscall(SYS_capset, a, b);
|
|
}
|
|
|
|
int capget(void *a, void *b)
|
|
{
|
|
return syscall(SYS_capget, a, b);
|
|
}
|