diff options
Diffstat (limited to 'libiberty/rindex.c')
-rw-r--r-- | libiberty/rindex.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libiberty/rindex.c b/libiberty/rindex.c index ef9cdc5..741fd8e 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); } |