1#define _BSD_SOURCE
2#include <string.h>
3#include <strings.h>
4
5void bcopy(const void *s1, void *s2, size_t n)
6{
7	memmove(s2, s1, n);
8}
9