| 463 | return p; |
| 464 | } |
| 465 | inline void das_aligned_free16(void *ptr) { |
| 466 | das::track_free_hook(ptr); |
| 467 | #if defined(_WIN32) |
| 468 | _aligned_free(ptr); |
| 469 | #else |
| 470 | free(ptr); |
| 471 | #endif |
| 472 | } |
| 473 | #if defined(__APPLE__) |
| 474 | #include <malloc/malloc.h> |
| 475 | #elif defined (__linux__) || defined (_EMSCRIPTEN_VER) || defined __HAIKU__ || defined(_WIN32) |
no test coverage detected