URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [gdb-5.0/] [libiberty/] [rindex.c] - Rev 1765
Compare with Previous | Blame | View Log
/* Stub implementation of (obsolete) rindex(). */ extern char *strrchr (); char * rindex (s, c) char *s; int c; { return strrchr (s, c); }