when resolving symbols with only weak defs, use first def, not last def
[musl] / src / string / bcmp.c
1 #include <string.h>
2 #include <strings.h>
3
4 int bcmp(const void *s1, const void *s2, size_t n)
5 {
6         return memcmp(s1, s2, n);
7 }