2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
14 void *bcopy(void const *src
, void *dest
, size_t count
);
17 bcopy(void const *src
, void *dest
, size_t count
)
19 return memmove(dest
, src
, count
);