blob: 65ab61a6e945a95777c8bb4d0f4467169e545c6a [file] [log] [blame]
#define _BSD_SOURCE
#include <string.h>
#include <strings.h>
void bcopy(const void* s1, void* s2, size_t n) {
memmove(s2, s1, n);
}