#include "structures.h"

void test_bcopy(void *a, void *b, size_t n) {
  bcopy(a, b, n);
}
