Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge index() and strchr() together. | ed | 2012-01-03 | 1 | -59/+0 |
| | | | | | | | | | | | | | | | | | 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. | ||||
* | Merge jmallett@'s n64 work into HEAD - changeset 1. | jchandra | 2010-06-16 | 1 | -8/+8 |
| | | | | | | | | | Update libc assembly code to use macros that work on both o32 and n64. Merge string functions from NetBSD. The changes are from http://svn.freebsd.org/base/user/jmallett/octeon Approved by: rrs (mentor), jmallett | ||||
* | Add mips support libc from the mips2-jnpr branch of perforce. | imp | 2008-04-26 | 1 | -0/+59 |
| | |||||
* | Remove these abortive MIPS bits. | obrien | 2002-03-23 | 1 | -56/+0 |
| | |||||
* | Bring in initial libc support for mips. These files were taken from | imp | 1999-03-03 | 1 | -0/+56 |
the OpenBSD tree and should be considered preliminary. They are here to facilitate building of the tree. |