diff options
Diffstat (limited to 'newlib/libc/string/strcpy.c')
-rw-r--r-- | newlib/libc/string/strcpy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strcpy.c b/newlib/libc/string/strcpy.c index 3505b80..94e16b5 100644 --- a/newlib/libc/string/strcpy.c +++ b/newlib/libc/string/strcpy.c @@ -52,8 +52,7 @@ QUICKREF #endif char* -_DEFUN (strcpy, (dst0, src0), - char *dst0, +strcpy (char *dst0, const char *src0) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |