Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcpcpy.c')
-rw-r--r--newlib/libc/string/wcpcpy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/wcpcpy.c b/newlib/libc/string/wcpcpy.c
index 942fad19c..76c5311f1 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++))