home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume6 / shadow-2.pt3 / lastlog.h < prev    next >
C/C++ Source or Header  |  1989-02-03  |  289b  |  13 lines

  1. /*
  2.  * lastlog.h - structure of lastlog file
  3.  *
  4.  *    This file defines a lastlog file structure which should be sufficient
  5.  *    to hold the information required by login.  It should only be used if
  6.  *    there is no real lastlog.h file.
  7.  */
  8.  
  9. struct    lastlog    {
  10.     time_t    ll_time;
  11.     char    ll_line[8];
  12. };
  13.