projects
/
external
/
binutils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
19990502 sourceware import
[external/binutils.git]
/
libiberty
/
index.c
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
}