1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

Kernel+LibC: Remove setreuid() / setregid() again

It looks like they're considered a bad idea, so let's not add
them before we need them. I figured it's good to have them in
git history if we ever do need them though, hence the add/remove
dance.
This commit is contained in:
Nico Weber 2020-06-17 14:08:14 -04:00 committed by Andreas Kling
parent a38754d9f2
commit dd53e070c5
5 changed files with 0 additions and 60 deletions

View file

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