asm for memmove on i386 and x86_64
[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 }