46632c18bd
As I looked through the C library, I noticed the FreeBSD MIPS port has a hand-written version of index(). This is nice, if it weren't for the fact that most applications call strchr() instead. Also, on the other architectures index() and strchr() are identical, meaning we have two identical pieces of code in the C library and statically linked applications. Solve this by naming the actual file strchr.[cS] and let it use __strong_reference()/STRONG_ALIAS() to provide the index() routine. Do the same for rindex()/strrchr(). This seems to make the C libraries and static binaries slightly smaller, but this reduction in size seems negligible. |
||
---|---|---|
.. | ||
bcopy.S | ||
bzero.S | ||
ffs.S | ||
Makefile.inc | ||
memcmp.S | ||
memcpy_arm.S | ||
memcpy_xscale.S | ||
memcpy.S | ||
memmove.S | ||
memset.S | ||
strcmp.S | ||
strlen.S | ||
strncmp.S |