1 /* Copyright (c) 1979 Regents of the University of California */ 2 3 static char sccsid[] = "@(#)blkclr.c 1.1 03/07/81"; 4 5 blkclr(siz, at) 6 long siz; 7 register char *at; 8 { 9 register int size = siz; 10 11 while(size-- > 0) 12 *at++ = 0; 13 } 14