mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 18:41:27 +00:00
19990502 sourceware import
This commit is contained in:
11
libiberty/rindex.c
Normal file
11
libiberty/rindex.c
Normal file
@@ -0,0 +1,11 @@
|
||||
/* Stub implementation of (obsolete) rindex(). */
|
||||
|
||||
extern char *strrchr ();
|
||||
|
||||
char *
|
||||
rindex (s, c)
|
||||
char *s;
|
||||
int c;
|
||||
{
|
||||
return strrchr (s, c);
|
||||
}
|
||||
Reference in New Issue
Block a user