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