login.c 315 B

1234567891011121314
  1. #include <errno.h>
  2. #include <limits.h>
  3. #include <string.h>
  4. #include <unistd.h>
  5. #include <stdlib.h>
  6. #include <utmp.h>
  7. /* Write the given entry into utmp and wtmp. */
  8. void login (const struct utmp *entry)
  9. {
  10. return;
  11. }
  12. link_warning (login, "the `login' function is stubbed out and will not write utmp or wtmp.")