| 31 | } |
| 32 | |
| 33 | void mc2_free(void *ptr) { |
| 34 | if (ptr != nullptr) operator delete(ptr); |
| 35 | } |
| 36 | |
| 37 | void *mc2_aligned_malloc(std::uint32_t size, std::uint32_t align) { |
| 38 | return _aligned_malloc(size, align); |
nothing calls this directly
no outgoing calls
no test coverage detected