| 23 | #include <new> |
| 24 | |
| 25 | void *mc2_malloc(std::uint32_t size) { |
| 26 | return operator new(size); |
| 27 | } |
| 28 | |
| 29 | void *mc2_malloc_info(std::uint32_t size, const char * /* file */, std::int32_t /* line */) { |
| 30 | return operator new(size); |
nothing calls this directly
no outgoing calls
no test coverage detected