chiark / gitweb /
[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
[elogind.git] / klibc / klibc / seteuid.c
1 /*
2  * seteuid.c
3  */
4
5 #include <unistd.h>
6
7 int seteuid(uid_t euid)
8 {
9   return setreuid(-1, euid);
10 }