aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/tcgetpgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/tcgetpgrp.c')
-rw-r--r--src/unistd/tcgetpgrp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/tcgetpgrp.c b/src/unistd/tcgetpgrp.c
index 50080c7e..1924a406 100644
--- a/src/unistd/tcgetpgrp.c
+++ b/src/unistd/tcgetpgrp.c
@@ -9,3 +9,11 @@ pid_t tcgetpgrp(int fd)
return -1;
return pgrp;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif