home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2290 / lastlog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  511 b   |  23 lines

  1. /*
  2.  * Copyright 1989, 1990, John F. Haugh II
  3.  * All rights reserved.
  4.  *
  5.  * Use, duplication, and disclosure prohibited without
  6.  * the express written permission of the author.
  7.  */
  8.  
  9. /*
  10.  * lastlog.h - structure of lastlog file
  11.  *
  12.  *    @(#)lastlog.h    2.3    19:23:49    7/29/90
  13.  *
  14.  *    This file defines a lastlog file structure which should be sufficient
  15.  *    to hold the information required by login.  It should only be used if
  16.  *    there is no real lastlog.h file.
  17.  */
  18.  
  19. struct    lastlog    {
  20.     time_t    ll_time;
  21.     char    ll_line[8];
  22. };
  23.