ref: f1c3a1a6a89ba8a801e10ef3e75fe0dc7a2a9149
dir: /sys/src/ape/lib/bsd/bcopy.c/
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
void
bcopy(void *f, void *t, size_t n)
{
memmove(t, f, n);
}
int
bcmp(void *a, void *b, size_t n)
{
return memcmp(a, b, n);
}
void
bzero(void *a, size_t n)
{
memset(a, 0, n);
}