replacement of a minimal set of functions:
| 3 | |
| 4 | // replacement of a minimal set of functions: |
| 5 | void* operator new(std::size_t sz) { |
| 6 | std::printf("global op new called, size = %zu\n",sz); |
| 7 | return std::malloc(sz); |
| 8 | } |
| 9 | void operator delete(void* ptr) noexcept |
| 10 | { |
| 11 | std::puts("global op delete called"); |
nothing calls this directly
no outgoing calls
no test coverage detected