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