mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
12 lines
147 B
C
12 lines
147 B
C
/* Stub implementation of (obsolete) rindex(). */
|
|
|
|
extern char *strrchr ();
|
|
|
|
char *
|
|
rindex (s, c)
|
|
char *s;
|
|
int c;
|
|
{
|
|
return strrchr (s, c);
|
|
}
|