LibC: Add getgroups stub

This commit is contained in:
Bananymous 2025-06-28 20:00:09 +03:00
parent c7c3dd7662
commit 3e6a4f2b16
1 changed files with 6 additions and 0 deletions

View File

@ -671,6 +671,12 @@ error:
return ret;
}
int getgroups(int gidsetsize, gid_t grouplist[])
{
dwarnln("FIXME: getgroups({}, {})", gidsetsize, grouplist);
return 0;
}
pid_t getppid(void)
{
return syscall(SYS_GET_PPID);