ex, nofollow'/>
summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/bcmp.c
AgeCommit message (Collapse)Author
2005-06-13Remove bcmp(). Use memcmp() instead.junyoung
2003-09-01Another attempt to get libsa to contain the right things.dsl
- put a 'standards conforming' memcmp into memcmp.c - make bcmp be a second label on the same code - make bcmp.c be just #include "memcmp.c" This means that libsa.o might contain both a memcmp.o and a bcmp.o, but both contain the same code (defining both symbols) so it doesn't matter which ld uses. Saves worrying about which of bcmp.c and memcmp.c the architecture specific Makefile requests.
2003-08-29The __strong_alias() seems to have to be in the file with the definition.dsl
So make bcmp.c define bcmp and memcmp. This should (?) fix the atari build. (I've now no idea why the previous change defined memcpy for the alpha build.)
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
Patches provided by Joel Baker in PR 22364, verified by myself.
1999-11-13Backout my libsa changes.thorpej
1999-11-11Update for the improvements to libsa, and don't reference libkern.h.thorpej
1999-04-01It's no use having a memcmp() that calls bcmp() if there's no bcmp() insimonb
the SA library. Basically copied from ../libkern with a few less #if's and #include's.