suballocator plus path fixes

git-svn-id: svn://kolibrios.org@7520 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
siemargl
2018-11-01 17:24:22 +00:00
parent da1718dca4
commit 2650f5831f
24 changed files with 514 additions and 2191 deletions

View File

@@ -1,10 +1,10 @@
#include <stdlib.h>
#include <string.h>
void* calloc (size_t num, size_t size)
void* syscalloc (size_t num, size_t size)
{
size_t bytes = num * size;
void *p = malloc(bytes);
void *p = sysmalloc(bytes);
if(p)
memset(p, 0, bytes);