Sign in
cobalt
/
cobalt
/
b108943525536ed016362e9c99ce219a9c351109
/
.
/
third_party
/
musl
/
src
/
unistd
/
getgroups.c
blob: 0e6e63af0129d7c9a6cc8ddb8d86a5e534a315b7 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
getgroups
(
int
count
,
gid_t
list
[])
{
return
syscall
(
SYS_getgroups
,
count
,
list
);
}