diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-26 01:21:10 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-26 01:21:10 +0000 |
commit | d8ea341e64250c2f4636c559562e8904037eda74 (patch) | |
tree | 5df7693726ec3a9f73e4d622b8312d42e8f31e03 /include | |
parent | 873228f50b0a83833e0f498010ffe3dcc75a9258 (diff) |
libc/string: need additional work to remove libc_hidden_proto's properly
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h index eb09cf9ea..5bf49b662 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -233,6 +233,7 @@ __BEGIN_NAMESPACE_C99 /* Find the first occurrence of WC in WCS. */ extern wchar_t *wcschr (__const wchar_t *__wcs, wchar_t __wc) __THROW __attribute_pure__; +libc_hidden_proto(wcschr) /* Find the last occurrence of WC in WCS. */ extern wchar_t *wcsrchr (__const wchar_t *__wcs, wchar_t __wc) __THROW __attribute_pure__; @@ -243,6 +244,7 @@ __END_NAMESPACE_C99 the closing NUL wide character in case C is not found in S. */ extern wchar_t *wcschrnul (__const wchar_t *__s, wchar_t __wc) __THROW __attribute_pure__; +libc_hidden_proto(wcschrnul) #endif __BEGIN_NAMESPACE_C99 |