Sign in
mojo
/
mojo-tools
/
339e142934dd2c1fa7f3e69b3b08fc1c04bc4f1f
/
.
/
fusl
/
src
/
linux
/
setgroups.c
blob: 1248fdbfdc83c10c9fea5a3a51d5be0edb905869 [
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
);
}