| 15 | int perturb = -1; |
| 16 | |
| 17 | void init() { |
| 18 | #ifndef _LINUX |
| 19 | if (getenv("MALLOC_PERTURB_")) { |
| 20 | perturb = atoi(getenv("MALLOC_PERTURB_")); |
| 21 | } |
| 22 | #endif |
| 23 | initialized = true; |
| 24 | } |
| 25 | |
| 26 | #ifdef _WIN32 |
| 27 | static int posix_memalign(void **ptr, size_t alignment, size_t size) |
no outgoing calls
no test coverage detected