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