blob: a07129f50dd131be1642be364b7ca780cd4fc825 [file] [log] [blame]
Szabolcs Nagy57174442013-12-12 05:09:18 +00001#define _BSD_SOURCE
Rich Felker0b44a032011-02-12 00:22:29 -05002#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}