ref: 68d9155e1fff6c4c2d69c96f3fd4e7dc66cdeebd dir: /sys/src/ape/lib/ap/alpha/memcpy.c/
#include <string.h> void* memcpy(void *a1, const void *a2, size_t n) { return memmove(a1, a2, n); }