Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMumit Khan <khan@@xraylith.wisc.edu>2000-05-06 21:00:53 +0400
committerMumit Khan <khan@@xraylith.wisc.edu>2000-05-06 21:00:53 +0400
commit60c83af2ad370e1db6530feff51804ff4ae708fd (patch)
tree1c50e890f33a1fa57dab68c28d6d208a03decb23 /winsup/cygwin/include/wchar.h
parent2a1064aad67e918eb5fe68e4fe8cb137e4607f2a (diff)
2000-05-06 Mumit Khan <khan@xraylith.wisc.edu>
* include/wchar.h (wcscmp, wcslen): Fix prototypes. * syscalls.cc (wcslen, wcscmp): Adjust.
Diffstat (limited to 'winsup/cygwin/include/wchar.h')
-rw-r--r--winsup/cygwin/include/wchar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/include/wchar.h b/winsup/cygwin/include/wchar.h
index 8c7c94dca..986db9881 100644
--- a/winsup/cygwin/include/wchar.h
+++ b/winsup/cygwin/include/wchar.h
@@ -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