Minix1.5/lib/other/bzero.c

Compare this file to the similar file:
Show the results in this format:

#include <lib.h>
/* bzero - Berklix subset of memset  */

#include <string.h>

void bzero(dst, length)
char *dst;
int length;
{
  (void) memset((_VOIDSTAR) dst, 0, (_SIZET) length);
}