chiark / gitweb /
[PATCH] fix problem where usb devices can be either the main device or the interface
[elogind.git] / klibc / klibc / setegid.c
1 /*
2  * setegid.c
3  */
4
5 #include <unistd.h>
6
7 int setegid(gid_t egid)
8 {
9   return setregid(-1, egid);
10 }