blob: fa898d2fc574f8aecee3590034eeb34579c62f85 [file] [log] [blame]
#include "vmkit/gc.h"
#include <stdlib.h>
#include <stdio.h>
using namespace vmkit;
void* GC::allocate(uintptr_t sz) {
return calloc(sz, 1);
}