| 110 | #endif |
| 111 | |
| 112 | void* operator new(size_t size) { |
| 113 | #if defined(Y_COVER_PTR) |
| 114 | return malloc(size); |
| 115 | #else |
| 116 | return NBalloc::Malloc(size); |
| 117 | #endif |
| 118 | } |
| 119 | |
| 120 | int posix_memalign(void** memptr, const size_t alignment, const size_t size) { |
| 121 | #if defined(Y_COVER_PTR) |
no test coverage detected