]> gcc.gnu.org Git - gcc.git/blame - libiberty/rindex.c
(mop_up): Set work->previous_argument to NULL after freeing it.
[gcc.git] / libiberty / rindex.c
CommitLineData
6599da04
JM
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.097903 seconds and 5 git commands to generate.