repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix typos
[binutils.git]
/
libiberty
/
index.c
blob
e5a00f54d9468ad84d0b7f2b0ae64f1800485cb6
1
/* Stub implementation of (obsolete) index(). */
2
3
extern
char
*
strchr
();
4
5
char
*
6
index
(
s
,
c
)
7
char
*
s
;
8
int
c
;
9
{
10
return
strchr
(
s
,
c
);
11
}