github.com/afumu/libc@v0.0.6/musl/src/string/bcopy.c (about) 1 #define _BSD_SOURCE 2 #include <string.h> 3 #include <strings.h> 4 5 void bcopy(const void *s1, void *s2, size_t n) 6 { 7 memmove(s2, s1, n); 8 }