mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 21:01:18 +01:00
346d84c900
git-svn-id: file:///srv/svn/repos/haiku/trunk/buildtools@9577 a95241bf-73f2-0310-859d-f6bbb57e9c96
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);
|
|
}
|