summaryrefslogtreecommitdiff
path: root/src/wchar/wcspbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcspbrk.c')
-rw-r--r--src/wchar/wcspbrk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wchar/wcspbrk.c b/src/wchar/wcspbrk.c
index fb72904c..20c25222 100644
--- a/src/wchar/wcspbrk.c
+++ b/src/wchar/wcspbrk.c
@@ -5,6 +5,7 @@
wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2)
{
SIGNAL_SAFE(0);
+ /* TODO: overlap */
int i;
for (i = 0; s1[i] != L'\0'; i++) {