diff options
Diffstat (limited to 'newlib/libc/string/rindex.c')
-rw-r--r-- | newlib/libc/string/rindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/rindex.c b/newlib/libc/string/rindex.c index e18fcb6..0c7f153 100644 --- a/newlib/libc/string/rindex.c +++ b/newlib/libc/string/rindex.c @@ -32,7 +32,7 @@ QUICKREF char * _DEFUN (rindex, (s, c), - _CONST char *s, + const char *s, int c) { return strrchr (s, c); |