2001-07-30 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
[binutils.git] / libiberty / rindex.c
blob061d1269f178e2454543a45033cd050a8e10bd38
1 /* Stub implementation of (obsolete) rindex(). */
3 extern char *strrchr ();
5 char *
6 rindex (s, c)
7 char *s;
8 int c;
10 return strrchr (s, c);