| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected