initialization of the "process" variable, this really should be
[unix-history] / usr / src / usr.bin / pascal / libpc / blkclr.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)blkclr.c 1.1 %G%";
blkclr(siz, at)
long siz;
register char *at;
{
register int size = siz;
while(size-- > 0)
*at++ = 0;
}