URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [gdb-5.0/] [libiberty/] [index.c] - Rev 107
Go to most recent revision | Compare with Previous | Blame | View Log
/* Stub implementation of (obsolete) index(). */ extern char * strchr(); char * index (s, c) char *s; int c; { return strchr (s, c); }
Go to most recent revision | Compare with Previous | Blame | View Log