xref: /original-bsd/include/lastlog.h (revision e59fb703)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)lastlog.h	5.1 (Berkeley) 05/30/85
7  */
8 
9 struct lastlog {
10 	time_t	ll_time;
11 	char	ll_line[8];
12 	char	ll_host[16];		/* same as in utmp */
13 };
14