diff options
Diffstat (limited to 'newlib/libc/string/wcpcpy.c')
-rw-r--r-- | newlib/libc/string/wcpcpy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/wcpcpy.c b/newlib/libc/string/wcpcpy.c index 942fad1..76c5311 100644 --- a/newlib/libc/string/wcpcpy.c +++ b/newlib/libc/string/wcpcpy.c @@ -26,8 +26,7 @@ No supporting OS subroutines are required. #include <wchar.h> wchar_t * -_DEFUN (wcpcpy, (s1, s2), - wchar_t *__restrict s1, +wcpcpy (wchar_t *__restrict s1, const wchar_t *__restrict s2) { while ((*s1++ = *s2++)) |