Sign in
android
/
platform
/
external
/
musl
/
6ab8136b4477fd75381c06fa0e7fa93c89c712a1
/
.
/
src
/
linux
/
setgroups.c
blob: 9758940af2c57eaa4a836d8e34cc34ea073bba3c [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
setgroups
(
size_t
count
,
const
gid_t
list
[])
{
return
syscall
(
SYS_setgroups
,
count
,
list
);
}