|
|
1.1 ! root 1: /* (-lgl ! 2: * COHERENT Version 4.0 ! 3: * Copyright (c) 1982, 1993 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__ ! 14: ! 15: #ifndef DIRSIZ ! 16: #define DIRSIZ 14 ! 17: #endif ! 18: ! 19: #include <sys/types.h> ! 20: ! 21: #pragma align 1 ! 22: struct utmp { ! 23: char ut_line[8]; /* tty name */ ! 24: char ut_name[DIRSIZ]; /* User name */ ! 25: time_t ut_time; /* time signed on */ ! 26: }; ! 27: #pragma align ! 28: ! 29: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.