Sign in
mojo
/
mojo-tools
/
736c850221aaa7ccbc6125bd515f8fd12f35046e
/
.
/
fusl
/
src
/
unistd
/
getgroups.c
blob: 077cf18fb2ad93953d2df514bb3367320d1d9515 [
file
]
#include
<unistd.h>
#include
"syscall.h"
int
getgroups
(
int
count
,
gid_t
list
[])
{
return
syscall
(
SYS_getgroups
,
count
,
list
);
}