home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1989, 1990, John F. Haugh II
- * All rights reserved.
- *
- * Use, duplication, and disclosure prohibited without
- * the express written permission of the author.
- */
-
- /*
- * lastlog.h - structure of lastlog file
- *
- * @(#)lastlog.h 2.3 19:23:49 7/29/90
- *
- * This file defines a lastlog file structure which should be sufficient
- * to hold the information required by login. It should only be used if
- * there is no real lastlog.h file.
- */
-
- struct lastlog {
- time_t ll_time;
- char ll_line[8];
- };
-