tumbledemerald-legacy/agbcc/libiberty/rindex.c
2022-05-19 17:14:13 +00:00

12 lines
147 B
C
Executable File

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