7 lines
77 B
C
7 lines
77 B
C
/* $Header$ */
|
|
bzero(b, l)
|
|
register char *b;
|
|
{
|
|
while (l-- > 0) *b++ = 0;
|
|
}
|