Sign in
mojo
/
mojo-tools
/
9f2dce8f51c146590b0e63ce584c112a982dab1c
/
.
/
fusl
/
src
/
linux
/
setgroups.c
blob: ef6347fc6247aae1d2926ffbe62094157baf565f [
file
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
int
setgroups
(
size_t
count
,
const
gid_t
list
[])
{
return
syscall
(
SYS_setgroups
,
count
,
list
);
}