3 <<bcopy>>---copy memory regions
7 void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
10 This function copies <[n]> bytes from the memory region
11 pointed to by <[in]> to the memory region pointed to by
14 This function is implemented in term of <<memmove>>.
17 <<bcopy>> requires no supporting OS subroutines.
27 bcopy (const void *b1
,
31 memmove (b2
, b1
, length
);