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