rework langinfo code for ABI compat and for use by time code
[musl] / unistd / setegid.c
1 #include <unistd.h>
2
3 int setegid(gid_t egid)
4 {
5         return setregid(-1, egid);
6 }