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