minix/lib/other/bcopy.c
2005-04-21 14:53:53 +00:00

13 lines
195 B
C
Executable file

#include <lib.h>
/* bcopy - Berklix equivalent of memcpy */
#include <string.h>
void bcopy(src, dst, length)
_CONST void *src;
void *dst;
size_t length;
{
(void) memcpy(dst, src, length);
}