old-cross-binutils/libiberty/rindex.c
1999-05-03 07:29:11 +00:00

11 lines
147 B
C

/* Stub implementation of (obsolete) rindex(). */
extern char *strrchr ();
char *
rindex (s, c)
char *s;
int c;
{
return strrchr (s, c);
}