repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1999-09-12 Donn Terry <donn@interix.com>
[binutils.git]
/
libiberty
/
rindex.c
blob
061d1269f178e2454543a45033cd050a8e10bd38
1
/* Stub implementation of (obsolete) rindex(). */
2
3
extern
char
*
strrchr
();
4
5
char
*
6
rindex
(
s
,
c
)
7
char
*
s
;
8
int
c
;
9
{
10
return
strrchr
(
s
,
c
);
11
}