projects
/
external
/
binutils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
This commit was generated by cvs2svn to track changes on a CVS vendor
[external/binutils.git]
/
libiberty
/
rindex.c
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
}