#include <stdlib.h>

void *bcopy(void *s, void *d, int n)
{ return memcpy(d, s, n);
}

