Sign in
mojo
/
mojo-tools
/
30dc8f4319addf5007e721df37323717563ff8bf
/
.
/
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
);
}