too much information...
[unix-history] / usr / src / usr.bin / pascal / libpc / blkclr.c
CommitLineData
aa0a9f78
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
f7593875 3static char sccsid[] = "@(#)blkclr.c 1.2 %G%";
aa0a9f78 4
f7593875 5blkclr(at, siz)
aa0a9f78 6 register char *at;
f7593875 7 long siz;
aa0a9f78
KM
8{
9 register int size = siz;
10
11 while(size-- > 0)
12 *at++ = 0;
13}