ack/lang/cem/libcc/gen/bmove.c
1987-01-27 15:57:55 +00:00

7 lines
76 B
C

bmove(dst, src, len)
char *dst, *src;
int len;
{
bcopy(src, dst, len);
}