aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/wcslen.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcslen.c')
-rw-r--r--newlib/libc/string/wcslen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/wcslen.c b/newlib/libc/string/wcslen.c
index ebef172..c927577 100644
--- a/newlib/libc/string/wcslen.c
+++ b/newlib/libc/string/wcslen.c
@@ -56,9 +56,9 @@ No supporting OS subroutines are required.
size_t
_DEFUN (wcslen, (s),
- _CONST wchar_t * s)
+ const wchar_t * s)
{
- _CONST wchar_t *p;
+ const wchar_t *p;
p = s;
while (*p)