MCPcopy Index your code
hub / github.com/dcodeIO/webassembly / malloc

Function malloc

lib/malloc.c:34–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32#include "dlmalloc/malloc.c"
33
34void* malloc(unsigned int size) {
35 return dlmalloc(size);
36}
37
38void free(void* ptr) {
39 dlfree(ptr);

Callers 1

memalignFunction · 0.85

Calls 1

dlmallocFunction · 0.85

Tested by

no test coverage detected