aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/gets.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/gets.c')
-rw-r--r--src/stdio/gets.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/gets.c b/src/stdio/gets.c
index 17963b93..cd219198 100644
--- a/src/stdio/gets.c
+++ b/src/stdio/gets.c
@@ -13,3 +13,11 @@ char *gets(char *s)
FUNLOCK(stdin);
return s;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif