140865Sbostic /*- 2*62091Sbostic * Copyright (c) 1979, 1993 3*62091Sbostic * The Regents of the University of California. All rights reserved. 440865Sbostic * 540865Sbostic * %sccs.include.redist.c% 640865Sbostic */ 72986Smckusick 840865Sbostic #ifndef lint 9*62091Sbostic static char sccsid[] = "@(#)blkclr.c 8.1 (Berkeley) 06/06/93"; 1040865Sbostic #endif /* not lint */ 112986Smckusick blkclr(at,siz)129134Smckusickblkclr(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