|
|
1.1 ! root 1: /* (-lgl ! 2: * COHERENT Version 3.0 ! 3: * Copyright (c) 1982, 1990 by Mark Williams Company. ! 4: * All rights reserved. May not be copied without permission. ! 5: -lgl) */ ! 6: /* ! 7: * Structure of the login records in `/etc/utmp' ! 8: * as well as the cummulative records in ! 9: * `/usr/adm/wtmp'. ! 10: */ ! 11: ! 12: #ifndef UTMP_H ! 13: #define UTMP_H UTMP_H ! 14: ! 15: #ifndef DIRSIZ ! 16: #define DIRSIZ 14 ! 17: #endif ! 18: ! 19: #include <sys/types.h> ! 20: ! 21: struct utmp { ! 22: char ut_line[8]; /* tty name */ ! 23: char ut_name[DIRSIZ]; /* User name */ ! 24: time_t ut_time; /* time signed on */ ! 25: }; ! 26: ! 27: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.