ack/lang/cem/libcc/gen/bmove.c

7 lines
76 B
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
bmove(dst, src, len)
char *dst, *src;
int len;
{
bcopy(src, dst, len);
}