move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / unistd / seteuid.c
blobef8b9df43bd7307597f3d106fe99b150f72b1cba
1 #include <unistd.h>
2 #include "syscall.h"
3 #include "libc.h"
5 int seteuid(uid_t euid)
7 return __setxid(SYS_setresuid, -1, euid, -1);