diff options
Diffstat (limited to 'src/unistd/seteuid.c')
-rw-r--r-- | src/unistd/seteuid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/seteuid.c b/src/unistd/seteuid.c index ef8b9df4..ebc05dd4 100644 --- a/src/unistd/seteuid.c +++ b/src/unistd/seteuid.c @@ -6,3 +6,11 @@ int seteuid(uid_t euid) { return __setxid(SYS_setresuid, -1, euid, -1); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |