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