replaces old bzero() with memset().

This commit is contained in:
TLINDEN
2013-10-29 23:08:43 +01:00
parent 40a49cd76f
commit 58a3bca8d7
10 changed files with 13 additions and 21 deletions

View File

@@ -11,7 +11,7 @@ void *ucmalloc(size_t s) {
exit(-1);
}
bzero (value, size);
memset (value, 0, size);
//printf("allocated %d bytes at %p\n", (int)size, value);