| 584 | #ifdef _win32_ |
| 585 | |
| 586 | char* realpath(const char* pathname, char resolved_path[MAXPATHLEN]) { |
| 587 | // partial implementation: no path existence check |
| 588 | return _fullpath(resolved_path, pathname, MAXPATHLEN - 1); |
| 589 | } |
| 590 | |
| 591 | #endif |
| 592 |
no outgoing calls
no test coverage detected