| 454 | /* Display a list of who is on the system, according to utmp file FILENAME. */ |
| 455 | |
| 456 | static void |
| 457 | short_pinky (char const *filename, |
| 458 | const int argc_names, char *const argv_names[]) |
| 459 | { |
| 460 | idx_t n_users; |
| 461 | STRUCT_UTMP *utmp_buf; |
| 462 | if (read_utmp (filename, &n_users, &utmp_buf, READ_UTMP_USER_PROCESS) != 0) |
| 463 | error (EXIT_FAILURE, errno, "%s", quotef (filename)); |
| 464 | |
| 465 | scan_entries (n_users, utmp_buf, argc_names, argv_names); |
| 466 | exit (EXIT_SUCCESS); |
| 467 | } |
| 468 | |
| 469 | static void |
| 470 | long_pinky (const int argc_names, char *const argv_names[]) |