gcc/libiberty/rindex.c

12 lines
147 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
/* Stub implementation of (obsolete) rindex(). */
extern char *strrchr ();
char *
rindex (s, c)
char *s;
int c;
{
return strrchr (s, c);
}