LibC: Add getgroups stub

This commit is contained in:
2025-06-28 20:25:35 +03:00
parent c7c3dd7662
commit 3e6a4f2b16
+6
View File
@@ -671,6 +671,12 @@ error:
return ret; return ret;
} }
int getgroups(int gidsetsize, gid_t grouplist[])
{
dwarnln("FIXME: getgroups({}, {})", gidsetsize, grouplist);
return 0;
}
pid_t getppid(void) pid_t getppid(void)
{ {
return syscall(SYS_GET_PPID); return syscall(SYS_GET_PPID);