]> cygwin.com Git - cygwin-apps/cygutils.git/blob - src-gpl/oldutmp.h
Add last implementation and supporting changes
[cygwin-apps/cygutils.git] / src-gpl / oldutmp.h
1 /*
2 * oldutmp.h Definition of the old libc5 utmp structure.
3 *
4 * Version: @(#)oldutmp.h 1.00 29-Mar-1998 miquels@cistron.nl
5 *
6 */
7 #ifndef OLD_UTMP_H
8 #define OLD_UTMP_H
9
10 #define OLD_LINESIZE 12
11 #define OLD_NAMESIZE 8
12 #define OLD_HOSTSIZE 16
13
14 struct oldutmp {
15 short ut_type;
16 int ut_pid;
17 char ut_line[OLD_LINESIZE];
18 char ut_id[4];
19 long ut_oldtime;
20 char ut_user[OLD_NAMESIZE];
21 char ut_host[OLD_HOSTSIZE];
22 long ut_oldaddr;
23 };
24
25 #endif
This page took 0.031947 seconds and 5 git commands to generate.