MCPcopy Create free account
hub / github.com/dborth/fceugx / vm_malloc

Function vm_malloc

source/vmalloc.cpp:27–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void* vm_malloc(u32 size)
28{
29 if(!vm_initialised) InitVmManager();
30 return __lwp_heap_allocate(&vm_heap, size);
31}
32
33bool vm_free(void *ptr)
34{

Callers 1

mainFunction · 0.85

Calls 1

InitVmManagerFunction · 0.85

Tested by

no test coverage detected