/************************************************************* * File: lib/bzero.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ /* ** This routine should be rewritten in assembly language to ** improve performance. */ /** bzero(dst,length) clear length bytes in destination */ bzero(dst,length) char *dst; int length; { int i; for (i=0;i