diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-29 18:30:27 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-29 18:30:27 -0400 |
commit | 1c1aa32eea467b2ed43b457b5528713933b32e95 (patch) | |
tree | 057d6ad0f8d5ccd9e2f336001b3707a1bfeed140 | |
parent | 8524d6536c7bcb893115c0c48982c7311906c1db (diff) | |
download | musl-1c1aa32eea467b2ed43b457b5528713933b32e95.zip musl-1c1aa32eea467b2ed43b457b5528713933b32e95.tar.gz musl-1c1aa32eea467b2ed43b457b5528713933b32e95.tar.bz2 |
missing prototype for wcscoll (stub)
-rw-r--r-- | include/wchar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h index 74f830d..f536210 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -47,6 +47,7 @@ wchar_t *wcsncat (wchar_t *, const wchar_t *, size_t); int wcscmp (const wchar_t *, const wchar_t *); int wcsncmp (const wchar_t *, const wchar_t *, size_t); +int wcscoll(const wchar_t *, const wchar_t *); size_t wcsxfrm (wchar_t *, const wchar_t *, size_t n); wchar_t *wcschr (const wchar_t *, wchar_t); |