| 307 | #if !defined(_MSC_VER) && !defined(_freebsd_) |
| 308 | // Workaround for pthread_create bug in linux. |
| 309 | extern "C" void* __libc_memalign(size_t alignment, size_t size) { |
| 310 | return memalign(alignment, size); |
| 311 | } |
| 312 | #endif |
nothing calls this directly
no test coverage detected