diff options
Diffstat (limited to 'newlib/libc/string/strcat.c')
-rw-r--r-- | newlib/libc/string/strcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/strcat.c b/newlib/libc/string/strcat.c index 96de39b..ac9bb8e 100644 --- a/newlib/libc/string/strcat.c +++ b/newlib/libc/string/strcat.c @@ -56,7 +56,7 @@ QUICKREF char * _DEFUN (strcat, (s1, s2), char *__restrict s1, - _CONST char *__restrict s2) + const char *__restrict s2) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) char *s = s1; |