diff options
Diffstat (limited to 'src/unistd/setregid.c')
-rw-r--r-- | src/unistd/setregid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/setregid.c b/src/unistd/setregid.c new file mode 100644 index 0000000..f5a8972 --- /dev/null +++ b/src/unistd/setregid.c @@ -0,0 +1,8 @@ +#include <unistd.h> +#include "syscall.h" +#include "libc.h" + +int setregid(gid_t rgid, gid_t egid) +{ + return __setxid(SYS_setregid, rgid, egid, 0); +} |