diff options
Diffstat (limited to 'newlib/libc/string/strncmp.c')
-rw-r--r-- | newlib/libc/string/strncmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/strncmp.c b/newlib/libc/string/strncmp.c index 98a31d3..685d192 100644 --- a/newlib/libc/string/strncmp.c +++ b/newlib/libc/string/strncmp.c @@ -53,8 +53,8 @@ QUICKREF int _DEFUN (strncmp, (s1, s2, n), - _CONST char *s1, - _CONST char *s2, + const char *s1, + const char *s2, size_t n) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |