LibC: Add getgroups stub
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user