diff options
Diffstat (limited to 'newlib/libc/string/strstr.c')
-rw-r--r-- | newlib/libc/string/strstr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/strstr.c b/newlib/libc/string/strstr.c index 94fe297..749edbc 100644 --- a/newlib/libc/string/strstr.c +++ b/newlib/libc/string/strstr.c @@ -40,8 +40,8 @@ QUICKREF char * _DEFUN (strstr, (searchee, lookfor), - _CONST char *searchee, - _CONST char *lookfor) + const char *searchee, + const char *lookfor) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |