Sign in
gnu
/
binutils-gdb
/
41e27f512a5123bc28e982264b9ceb3b78e6da85
/
.
/
libiberty
/
rindex.c
blob: 061d1269f178e2454543a45033cd050a8e10bd38 [
file
] [
log
] [
blame
]
/* Stub implementation of (obsolete) rindex(). */
extern
char
*
strrchr
();
char
*
rindex
(
s
,
c
)
char
*
s
;
int
c
;
{
return
strrchr
(
s
,
c
);
}