summaryrefslogtreecommitdiff
path: root/libc/string/strchrnul.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strchrnul.c')
-rw-r--r--libc/string/strchrnul.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/string/strchrnul.c b/libc/string/strchrnul.c
index d2d7df307..4751971bc 100644
--- a/libc/string/strchrnul.c
+++ b/libc/string/strchrnul.c
@@ -21,5 +21,7 @@ Wchar *Wstrchrnul(register const Wchar *s, Wint c)
while (*++s && (*s != ((Wchar)c)));
return (Wchar *) s;
}
+# ifndef WANT_WIDE
libc_hidden_def(Wstrchrnul)
+# endif
#endif