diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-09 23:20:16 +0100 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-09 23:20:16 +0100 |
commit | abd6c6c29f82ddcc7c86c67519b79d2381622ed9 (patch) | |
tree | e856b8ab3c777d488839f0414561466aaa53be84 /libc/string/strchrnul.c | |
parent | 3ec2f90152de3b11266bc0d3f4fa6a41b3c52374 (diff) |
remove unused hidden functions
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'libc/string/strchrnul.c')
-rw-r--r-- | libc/string/strchrnul.c | 2 |
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 |