2000-05-06 Mumit Khan <khan@xraylith.wisc.edu>

* include/wchar.h (wcscmp, wcslen): Fix prototypes.
	* syscalls.cc (wcslen, wcscmp): Adjust.
This commit is contained in:
Mumit Khan
2000-05-06 17:00:53 +00:00
parent 2a1064aad6
commit 60c83af2ad
3 changed files with 10 additions and 5 deletions

View File

@ -19,8 +19,8 @@ details. */
__BEGIN_DECLS
int wcscmp (wchar_t *__s1, wchar_t *__s2);
int wcslen (wchar_t *__s1);
int wcscmp (const wchar_t *__s1, const wchar_t *__s2);
size_t wcslen (const wchar_t *__s1);
__END_DECLS