MCPcopy Create free account
hub / github.com/XorTroll/uLaunch / __libnx_alloc

Function __libnx_alloc

projects/uSystem/source/main.cpp:27–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25 // So that libstratosphere doesn't redefine them as invalid
26
27 void *__libnx_alloc(size_t size) {
28 return malloc(size);
29 }
30
31 void *__libnx_aligned_alloc(size_t align, size_t size) {
32 return aligned_alloc(align, size);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected