xref: /original-bsd/include/utmp.h (revision 264c46cb)
1 /*	utmp.h	4.2	83/05/22	*/
2 
3 /*
4  * Structure of utmp and wtmp files.
5  *
6  * Assuming the number 8 is unwise.
7  */
8 struct utmp {
9 	char	ut_line[8];		/* tty name */
10 	char	ut_name[8];		/* user id */
11 	char	ut_host[16];		/* host name, if remote */
12 	long	ut_time;		/* time on */
13 };
14