source: trunk/src/binutils/libiberty/rindex.c@ 106

Last change on this file since 106 was 10, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 147 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.