]> gcc.gnu.org Git - gcc.git/blob - libiberty/index.c
configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if the test fails.
[gcc.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 }
This page took 0.035787 seconds and 5 git commands to generate.