MCPcopy Create free account
hub / github.com/Ubpa/Utopia / Malloc

Method Malloc

src/ScriptSystem/LuaMemory.cpp:8–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6using namespace Ubpa::Utopia;
7
8void* LuaMemory::Malloc(size_t size) {
9 return malloc(size);
10}
11
12void LuaMemory::Free(void* block) {
13 free(block);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected