| 1440 | for it. STATP is the results of 'stat' on NAME. */ |
| 1441 | |
| 1442 | static void |
| 1443 | get_entry (char const *name, struct stat const *statp) |
| 1444 | { |
| 1445 | if ((S_ISBLK (statp->st_mode) || S_ISCHR (statp->st_mode)) |
| 1446 | && get_device (name)) |
| 1447 | return; |
| 1448 | |
| 1449 | get_point (name, statp); |
| 1450 | } |
| 1451 | |
| 1452 | /* Show all mounted file systems, except perhaps those that are of |
| 1453 | an unselected type or are empty. */ |
no test coverage detected