MCPcopy Create free account
hub / github.com/NICUP14/MiniLang / ml_malloc

Function ml_malloc

skel/include/mlalloc.c:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <mlalloc.h>
2
3void *ml_malloc(size_t size)
4{
5 return gc_malloc(&ml_gc, size);
6}
7
8void *ml_calloc(size_t count, size_t size)
9{

Callers

nothing calls this directly

Calls 1

gc_mallocFunction · 0.70

Tested by

no test coverage detected