| 342 | |
| 343 | #undef rmdir |
| 344 | int lstat_cache_aware_rmdir(const char *path) |
| 345 | { |
| 346 | /* Any change in this function must be made also in `mingw_rmdir()` */ |
| 347 | int ret = rmdir(path); |
| 348 | |
| 349 | if (!ret) |
| 350 | invalidate_lstat_cache(); |
| 351 | |
| 352 | return ret; |
| 353 | } |
nothing calls this directly
no test coverage detected