| 396 | #endif |
| 397 | |
| 398 | static const char *convert_path_windows(const char *path) |
| 399 | { |
| 400 | #ifdef HOST_CYGWIN |
| 401 | return convert_path(path, CCP_POSIX_TO_WIN_A); |
| 402 | #else |
| 403 | strcpy(g_path, path); |
| 404 | return g_path; |
| 405 | #endif |
| 406 | } |
| 407 | |
| 408 | static const char *convert_path_posix(const char *path) |
| 409 | { |
no test coverage detected