source:
trunk/src/binutils/libiberty/index.c@
462
Last change on this file since 462 was 10, checked in by , 22 years ago | |
---|---|
|
|
File size: 143 bytes |
Line | |
---|---|
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 | } |
Note:
See TracBrowser
for help on using the repository browser.