* Makefile.am (ALL_EMULATIONS): Add ecrisaout.o, ecriself.o,
[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);