summaryrefslogtreecommitdiff
path: root/src/unistd/setregid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/setregid.c')
-rw-r--r--src/unistd/setregid.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/unistd/setregid.c b/src/unistd/setregid.c
new file mode 100644
index 00000000..d25dab76
--- /dev/null
+++ b/src/unistd/setregid.c
@@ -0,0 +1,9 @@
+#include <unistd.h>
+#include "syscall.h"
+#include "libc.h"
+
+int setregid(gid_t rgid, gid_t egid)
+{
+ if (libc.rsyscall) return libc.rsyscall(__NR_setregid32, rgid, egid, 0, 0, 0, 0);
+ return syscall2(__NR_setregid32, rgid, egid);
+}