ack/lang/cem/libcc/gen/bzero.c
1994-06-24 14:02:31 +00:00

7 lines
73 B
C

/* $Id$ */
bzero(b, l)
register char *b;
{
while (l-- > 0) *b++ = 0;
}