aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/rindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/rindex.c')
-rw-r--r--newlib/libc/string/rindex.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/rindex.c b/newlib/libc/string/rindex.c
index 0c7f153..39e5aa2 100644
--- a/newlib/libc/string/rindex.c
+++ b/newlib/libc/string/rindex.c
@@ -31,8 +31,7 @@ QUICKREF
#include <strings.h>
char *
-_DEFUN (rindex, (s, c),
- const char *s,
+rindex (const char *s,
int c)
{
return strrchr (s, c);