]> gcc.gnu.org Git - gcc.git/blob - libiberty/rindex.c
cp-tree.def (THUNK_DECL): Remove.
[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 }
This page took 0.085897 seconds and 5 git commands to generate.