aboutsummaryrefslogtreecommitdiff
path: root/src/string/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strsep.c')
-rw-r--r--src/string/strsep.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/strsep.c b/src/string/strsep.c
index cb37c32e..c5e853d9 100644
--- a/src/string/strsep.c
+++ b/src/string/strsep.c
@@ -11,3 +11,11 @@ char *strsep(char **str, const char *sep)
*str = end;
return s;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif