aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/wcscpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcscpy.c')
-rw-r--r--newlib/libc/string/wcscpy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/wcscpy.c b/newlib/libc/string/wcscpy.c
index 2dff639..679e9c5 100644
--- a/newlib/libc/string/wcscpy.c
+++ b/newlib/libc/string/wcscpy.c
@@ -59,10 +59,10 @@ No supporting OS subroutines are required.
wchar_t *
_DEFUN (wcscpy, (s1, s2),
wchar_t *__restrict s1,
- _CONST wchar_t *__restrict s2)
+ const wchar_t *__restrict s2)
{
wchar_t *p;
- _CONST wchar_t *q;
+ const wchar_t *q;
*s1 = '\0';
p = s1;