1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibC: Minor style fix for getresuid/getresgid

This commit is contained in:
Nico Weber 2020-06-30 19:34:20 -04:00 committed by Andreas Kling
parent cbbd55bd6b
commit 6d5bd8c76b
2 changed files with 3 additions and 3 deletions

View file

@ -84,8 +84,8 @@ uid_t getuid();
gid_t getgid();
pid_t getpid();
pid_t getppid();
int getresuid(uid_t *, uid_t *, uid_t *);
int getresgid(gid_t *, gid_t *, gid_t *);
int getresuid(uid_t*, uid_t*, uid_t*);
int getresgid(gid_t*, gid_t*, gid_t*);
int getgroups(int size, gid_t list[]);
int setgroups(size_t, const gid_t*);
int seteuid(uid_t);