wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git] / src / linux / setgroups.c
blob1248fdbfdc83c10c9fea5a3a51d5be0edb905869
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
5 int setgroups(size_t count, const gid_t list[])
7 return syscall(SYS_setgroups, count, list);