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