* decl2.c (build_expr_from_tree): Change calls of do_identifier.
[official-gcc.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);