diff options
Diffstat (limited to 'newlib/libc/string/strcpy.c')
-rw-r--r-- | newlib/libc/string/strcpy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/string/strcpy.c b/newlib/libc/string/strcpy.c index 4354472..3505b80 100644 --- a/newlib/libc/string/strcpy.c +++ b/newlib/libc/string/strcpy.c @@ -54,7 +54,7 @@ QUICKREF char* _DEFUN (strcpy, (dst0, src0), char *dst0, - _CONST char *src0) + const char *src0) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) char *s = dst0; @@ -65,9 +65,9 @@ _DEFUN (strcpy, (dst0, src0), return s; #else char *dst = dst0; - _CONST char *src = src0; + const char *src = src0; long *aligned_dst; - _CONST long *aligned_src; + const long *aligned_src; /* If SRC or DEST is unaligned, then copy bytes. */ if (!UNALIGNED (src, dst)) |