blob: 061d1269f178e2454543a45033cd050a8e10bd38 [file] [log] [blame]
/* Stub implementation of (obsolete) rindex(). */
extern char *strrchr ();
char *
rindex (s, c)
char *s;
int c;
{
return strrchr (s, c);
}