aboutsummaryrefslogtreecommitdiff
path: root/libiberty/rindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/rindex.c')
-rw-r--r--libiberty/rindex.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libiberty/rindex.c b/libiberty/rindex.c
index ef9cdc59877..741fd8ecb7c 100644
--- a/libiberty/rindex.c
+++ b/libiberty/rindex.c
@@ -15,9 +15,7 @@ deprecated in new programs in favor of @code{strrchr}.
extern char *strrchr ();
char *
-rindex (s, c)
- char *s;
- int c;
+rindex (char *s, int c)
{
return strrchr (s, c);
}