move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / string / bcopy.c
bloba07129f50dd131be1642be364b7ca780cd4fc825
1 #define _BSD_SOURCE
2 #include <string.h>
3 #include <strings.h>
5 void bcopy(const void *s1, void *s2, size_t n)
7 memmove(s2, s1, n);