]> git.ipfire.org Git - thirdparty/gcc.git/blob - libiberty/rindex.c
061d1269f178e2454543a45033cd050a8e10bd38
[thirdparty/gcc.git] / libiberty / rindex.c
1 /* Stub implementation of (obsolete) rindex(). */
2
3 extern char *strrchr ();
4
5 char *
6 rindex (s, c)
7 char *s;
8 int c;
9 {
10 return strrchr (s, c);
11 }