delete extraneous definitions
[unix-history] / usr / src / include / utmp.h
CommitLineData
5f02dda5 1/* utmp.h 4.2 83/05/22 */
7a7b7bcb
SL
2
3/*
4 * Structure of utmp and wtmp files.
5 *
6 * Assuming the number 8 is unwise.
7 */
8struct utmp {
9 char ut_line[8]; /* tty name */
10 char ut_name[8]; /* user id */
5f02dda5 11 char ut_host[16]; /* host name, if remote */
7a7b7bcb
SL
12 long ut_time; /* time on */
13};