Encapsulate the test for whether the errno value, ERRNUM, is ignorable. */
| 355 | |
| 356 | /* Encapsulate the test for whether the errno value, ERRNUM, is ignorable. */ |
| 357 | static inline bool |
| 358 | ignorable_missing (struct rm_options const *x, int errnum) |
| 359 | { |
| 360 | return x->ignore_missing_files && nonexistent_file_errno (errnum); |
| 361 | } |
| 362 | |
| 363 | /* Tell fts not to traverse into the hierarchy at ENT. */ |
| 364 | static void |
no test coverage detected