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