checkpoint

This commit is contained in:
Michael Meissner 1995-11-13 16:07:30 +00:00
parent 125d37c471
commit 1dc7c0ed84
8 changed files with 894 additions and 406 deletions

View file

@ -73,7 +73,7 @@ zalloc(long size)
void *memory = malloc(size);
if (memory == NULL)
error("zmalloc failed\n");
bzero(memory, size);
memset(memory, 0, size);
return memory;
}