Minix2.0/src/lib/other/bcopy.c

Compare this file to the similar file:
Show the results in this format:

#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);
}