| 489 | |
| 490 | #ifdef MI_NO_GETENV |
| 491 | static bool mi_getenv(const char* name, char* result, size_t result_size) { |
| 492 | MI_UNUSED(name); |
| 493 | MI_UNUSED(result); |
| 494 | MI_UNUSED(result_size); |
| 495 | return false; |
| 496 | } |
| 497 | #else |
| 498 | #if defined _WIN32 |
| 499 | // On Windows use GetEnvironmentVariable instead of getenv to work |
no test coverage detected