#ifndef lint static char rcsid[] = "$Header$"; #endif /* * Sample bcopy() routine. * This should be rewritten to be as fast as possible for your * machine. */ bcopy(from, to, count) register char *from, *to; register int count; { while (--count >= 0) *to++ = *from++; }