aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/machine/microblaze/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/machine/microblaze/strcpy.c')
-rw-r--r--newlib/libc/machine/microblaze/strcpy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/machine/microblaze/strcpy.c b/newlib/libc/machine/microblaze/strcpy.c
index e0e1d77..8e2dae6 100644
--- a/newlib/libc/machine/microblaze/strcpy.c
+++ b/newlib/libc/machine/microblaze/strcpy.c
@@ -83,7 +83,7 @@ QUICKREF
char*
_DEFUN (strcpy, (dst0, src0),
char *__restrict dst0,
- _CONST char *__restrict src0)
+ const char *__restrict src0)
{
#ifndef HAVE_HW_PCMP
@@ -97,9 +97,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))