summaryrefslogtreecommitdiff
path: root/src/unistd/setresgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/setresgid.c')
-rw-r--r--src/unistd/setresgid.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/setresgid.c b/src/unistd/setresgid.c
index 3c85a828..2b0c96d8 100644
--- a/src/unistd/setresgid.c
+++ b/src/unistd/setresgid.c
@@ -5,6 +5,5 @@
int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
{
- if (libc.rsyscall) return libc.rsyscall(__NR_setresgid, rgid, egid, sgid, 0, 0, 0);
- return syscall(SYS_setresgid, rgid, egid, sgid);
+ return __rsyscall(__NR_setresgid, rgid, egid, sgid, 0, 0, 0);
}