Sign in
mojo
/
mojo
/
2f64806b047b83f7c49e0525d8f3499d7be23e27
/
.
/
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
);
}