]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/binutils/libiberty/index.c
This commit was generated by cvs2svn to compensate for changes in r48730,
[FreeBSD/FreeBSD.git] / contrib / binutils / 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 }