| 251 | // uses internally `memalign`, `posix_memalign`, or `_aligned_malloc` so we can avoid overriding it ourselves. |
| 252 | #if __USE_ISOC11 |
| 253 | void* aligned_alloc(size_t alignment, size_t size) { return mi_aligned_alloc(alignment, size); } |
| 254 | #endif |
| 255 | #endif |
| 256 |
no test coverage detected