diff options
Diffstat (limited to 'newlib/libc/string/wcpncpy.c')
-rw-r--r-- | newlib/libc/string/wcpncpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/wcpncpy.c b/newlib/libc/string/wcpncpy.c index f643b1e..11f4d7c 100644 --- a/newlib/libc/string/wcpncpy.c +++ b/newlib/libc/string/wcpncpy.c @@ -35,7 +35,7 @@ No supporting OS subroutines are required. wchar_t * _DEFUN (wcpncpy, (dst, src, count), wchar_t *__restrict dst, - _CONST wchar_t *__restrict src, + const wchar_t *__restrict src, size_t count) { wchar_t *ret = NULL; |