/* * Copyright (c) 1987 Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)bzero.c 5.5 (Berkeley) 06/01/90"; #endif /* LIBC_SCCS and not lint */ #include /* * bzero -- vax movc5 instruction */ void bzero(b, length) register char *b; register size_t length; { while (length--) *b++ = '\0'; }