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