mirror of
https://github.com/fluencelabs/musl
synced 2025-06-06 11:31:35 +00:00
12 lines
180 B
C
12 lines
180 B
C
|
#include <grp.h>
|
||
|
|
||
|
/* FIXME */
|
||
|
|
||
|
int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups)
|
||
|
{
|
||
|
if (*ngroups<1) return -1;
|
||
|
*groups = gid;
|
||
|
*ngroups = 1;
|
||
|
return 0;
|
||
|
}
|