chiark / gitweb /
[PATCH] tweak udev-test.pl to report '0' errors if that's what happened.
[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 }