aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/wcscat.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcscat.c')
-rw-r--r--newlib/libc/string/wcscat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/wcscat.c b/newlib/libc/string/wcscat.c
index 900c3cc..40b7774 100644
--- a/newlib/libc/string/wcscat.c
+++ b/newlib/libc/string/wcscat.c
@@ -63,11 +63,11 @@ No supporting OS subroutines are required.
wchar_t *
_DEFUN (wcscat, (s1, s2),
wchar_t *__restrict s1,
- _CONST wchar_t *__restrict s2)
+ const wchar_t *__restrict s2)
{
wchar_t *p;
wchar_t *q;
- _CONST wchar_t *r;
+ const wchar_t *r;
p = s1;
while (*p)