diff options
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/string/wcscoll.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index c6b031ef6..5a692191a 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2001-04-03 Corinna Vinschen <corinna@vinschen.de> + + * libc/string/wcscoll.c: Fix comment. + 2001-04-02 Corinna Vinschen <corinna@vinschen.de> * libc/include/wchar.h: Add definition for wcscoll. diff --git a/newlib/libc/string/wcscoll.c b/newlib/libc/string/wcscoll.c index fb656521a..9287af38c 100644 --- a/newlib/libc/string/wcscoll.c +++ b/newlib/libc/string/wcscoll.c @@ -6,14 +6,14 @@ INDEX wcscoll ANSI_SYNOPSIS - #include <string.h> - int wcscoll(const char *<[stra]>, const char * <[strb]>); + #include <wchar.h> + int wcscoll(const wchar_t *<[stra]>, const wchar_t * <[strb]>); TRAD_SYNOPSIS - #include <string.h> + #include <wchar.h> int wcscoll(<[stra]>, <[strb]>) - char *<[stra]>; - char *<[strb]>; + wchar_t *<[stra]>; + wchar_t *<[strb]>; DESCRIPTION <<wcscoll>> compares the wide-character string pointed to by |