1 2 3 4 5 6 7
#include <string.h> void* memcpy(void *a1, const void *a2, size_t n) { return memmove(a1, a2, n); }