bmove.c 87 B

1234567
  1. /* $Id$ */
  2. bmove(dst, src, len)
  3. char *dst, *src;
  4. int len;
  5. {
  6. bcopy(src, dst, len);
  7. }