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