mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 14:54:42 +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
8 lines
159 B
C
8 lines
159 B
C
#define _GNU_SOURCE
|
|
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
int setgroups(size_t count, const gid_t list[])
|
|
{
|
|
return syscall(SYS_setgroups, count, list);
|
|
}
|