1*40865Sbostic /*- 2*40865Sbostic * Copyright (c) 1979 The Regents of the University of California. 3*40865Sbostic * All rights reserved. 4*40865Sbostic * 5*40865Sbostic * %sccs.include.redist.c% 6*40865Sbostic */ 72986Smckusick 8*40865Sbostic #ifndef lint 9*40865Sbostic static char sccsid[] = "@(#)blkclr.c 1.3 (Berkeley) 04/09/90"; 10*40865Sbostic #endif /* not lint */ 112986Smckusick 129134Smckusick blkclr(at, siz) 139134Smckusick register char *at; 142986Smckusick long siz; 152986Smckusick { 162986Smckusick register int size = siz; 172986Smckusick 182986Smckusick while(size-- > 0) 192986Smckusick *at++ = 0; 202986Smckusick } 21