(display_debug_lines, case DW_LNS_const_add_pc): Multiply adv by info.li_min_insn_length.
[deliverable/binutils-gdb.git] / libiberty / rindex.c
CommitLineData
252b5132
RH
1/* Stub implementation of (obsolete) rindex(). */
2
3extern char *strrchr ();
4
5char *
6rindex (s, c)
7 char *s;
8 int c;
9{
10 return strrchr (s, c);
11}
This page took 0.027914 seconds and 4 git commands to generate.