]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/index.c
cpphash.h (struct _cpp_buff, [...]): New.
[thirdparty/gcc.git] / libiberty / index.c
CommitLineData
6599da04
JM
1/* Stub implementation of (obsolete) index(). */
2
3extern char * strchr();
4
5char *
6index (s, c)
7 char *s;
8 int c;
9{
10 return strchr (s, c);
11}