mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
LibC: Minor style fix for getresuid/getresgid
This commit is contained in:
parent
cbbd55bd6b
commit
6d5bd8c76b
Notes:
sideshowbarker
2024-07-19 05:12:26 +09:00
Author: https://github.com/nico
Commit: 6d5bd8c76b
Pull-request: https://github.com/SerenityOS/serenity/pull/2670
Reviewed-by: https://github.com/bugaevc
2 changed files with 3 additions and 3 deletions
|
@ -212,7 +212,7 @@ int getresuid(uid_t* ruid, uid_t* euid, uid_t* suid)
|
|||
return syscall(SC_getresuid, ruid, euid, suid);
|
||||
}
|
||||
|
||||
int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid)
|
||||
int getresgid(gid_t* rgid, gid_t* egid, gid_t* sgid)
|
||||
{
|
||||
return syscall(SC_getresgid, rgid, egid, sgid);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue