Sign in
mojo
/
mojo-tools
/
27d0e88f9491c00c039a930683685dbcd1e75122
/
.
/
fusl
/
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
);
}