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