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