aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/wcslcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcslcat.c')
-rw-r--r--newlib/libc/string/wcslcat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/wcslcat.c b/newlib/libc/string/wcslcat.c
index 1015c4c..dd96d30 100644
--- a/newlib/libc/string/wcslcat.c
+++ b/newlib/libc/string/wcslcat.c
@@ -70,11 +70,11 @@ No supporting OS subroutines are required.
size_t
_DEFUN (wcslcat, (dst, src, siz),
wchar_t * dst,
- _CONST wchar_t * src,
+ const wchar_t * src,
size_t siz)
{
wchar_t *d = dst;
- _CONST wchar_t *s = src;
+ const wchar_t *s = src;
size_t n = siz;
size_t dlen;