aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strrchr.c')
-rw-r--r--newlib/libc/string/strrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/strrchr.c b/newlib/libc/string/strrchr.c
index 721bb91..4aafd50 100644
--- a/newlib/libc/string/strrchr.c
+++ b/newlib/libc/string/strrchr.c
@@ -31,10 +31,10 @@ QUICKREF
char *
_DEFUN (strrchr, (s, i),
- _CONST char *s,
+ const char *s,
int i)
{
- _CONST char *last = NULL;
+ const char *last = NULL;
if (i)
{