aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/setregid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/setregid.c')
-rw-r--r--src/unistd/setregid.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/setregid.c b/src/unistd/setregid.c
index f5a8972a..bac7cb8d 100644
--- a/src/unistd/setregid.c
+++ b/src/unistd/setregid.c
@@ -6,3 +6,11 @@ int setregid(gid_t rgid, gid_t egid)
{
return __setxid(SYS_setregid, rgid, egid, 0);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif