aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/setresuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/setresuid.c')
-rw-r--r--src/unistd/setresuid.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/setresuid.c b/src/unistd/setresuid.c
index 83692b4c..ab4a73be 100644
--- a/src/unistd/setresuid.c
+++ b/src/unistd/setresuid.c
@@ -7,3 +7,11 @@ int setresuid(uid_t ruid, uid_t euid, uid_t suid)
{
return __setxid(SYS_setresuid, ruid, euid, suid);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif