summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/setegid.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/setegid.c')
-rw-r--r--libc/sysdeps/linux/common/setegid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/setegid.c b/libc/sysdeps/linux/common/setegid.c
index 3eebf60fb..19d8e3f9c 100644
--- a/libc/sysdeps/linux/common/setegid.c
+++ b/libc/sysdeps/linux/common/setegid.c
@@ -2,5 +2,5 @@
int setegid(gid_t gid)
{
- return __setregid(-1, gid);
+ return setregid(-1, gid);
}