aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/strcasestr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strcasestr.c')
-rw-r--r--newlib/libc/string/strcasestr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/strcasestr.c b/newlib/libc/string/strcasestr.c
index 71ade66..1cc5f6e 100644
--- a/newlib/libc/string/strcasestr.c
+++ b/newlib/libc/string/strcasestr.c
@@ -91,8 +91,8 @@ QUICKREF
*/
char *
_DEFUN (strcasestr, (s, find),
- _CONST char *s,
- _CONST char *find)
+ const char *s,
+ const char *find)
{
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)