2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-01-06 23:35:12 +08:00
gcc/libiberty/index.c

12 lines
143 B
C
Raw Normal View History

1997-08-22 06:57:35 +08:00
/* Stub implementation of (obsolete) index(). */
extern char * strchr();
char *
index (s, c)
char *s;
int c;
{
return strchr (s, c);
}