6599da043e
From-SVN: r14877
12 lines
143 B
C
12 lines
143 B
C
/* Stub implementation of (obsolete) index(). */
|
|
|
|
extern char * strchr();
|
|
|
|
char *
|
|
index (s, c)
|
|
char *s;
|
|
int c;
|
|
{
|
|
return strchr (s, c);
|
|
}
|