bmove X
1: /* quickly coded bmove for any machine */ 2: 3: /* @(#)bmove.SUN.c 8.1 (INGRES) 12/8/85 */ 4: 5: bmove(s, d, l) 6: char *s, *d; 7: int l; 8: { 9: bcopy(s, d, l); 10: }