blob: e5a00f54d9468ad84d0b7f2b0ae64f1800485cb6 [file] [log] [blame]
/* Stub implementation of (obsolete) index(). */
extern char * strchr();
char *
index (s, c)
char *s;
int c;
{
return strchr (s, c);
}