make mktemp match the historic behavior, and update functions that use it
[musl] / src / unistd / setegid.c
1 #include <unistd.h>
2
3 int setegid(gid_t egid)
4 {
5         return setregid(-1, egid);
6 }