1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:37:46 +00:00

Kernel/LibC: Implement setreuid

This commit is contained in:
Jesse Buhagiar 2021-04-09 21:13:15 +10:00 committed by Andreas Kling
parent 81eab1a9d1
commit 60cdbc9397
5 changed files with 34 additions and 0 deletions

View file

@ -74,6 +74,7 @@ int seteuid(uid_t);
int setegid(gid_t);
int setuid(uid_t);
int setgid(gid_t);
int setreuid(uid_t, uid_t);
int setresuid(uid_t, uid_t, uid_t);
int setresgid(gid_t, gid_t, gid_t);
pid_t tcgetpgrp(int fd);