| 352 | // uses internally `memalign`, `posix_memalign`, or `_aligned_malloc` so we can avoid overriding it ourselves. |
| 353 | #if !defined(__GLIBC__) || __USE_ISOC11 |
| 354 | mi_decl_weak // XXX EMSCRIPTEN |
| 355 | void* aligned_alloc(size_t alignment, size_t size) { return mi_aligned_alloc(alignment, size); } |
| 356 | #endif |
| 357 | #endif |
| 358 |
nothing calls this directly
no test coverage detected