]> sourceware.org Git - glibc.git/blob - sysdeps/unix/sysv/utmp.h
initial import
[glibc.git] / sysdeps / unix / sysv / utmp.h
1 #ifndef _UTMP_H
2
3 #define _UTMP_H 1
4
5 #include <time.h>
6
7 struct utmp
8 {
9 #define ut_name ut_user
10 char ut_user[8];
11 char ut_id[4];
12 char ut_line[12];
13 short ut_pid;
14 short ut_type;
15 struct exit_status
16 {
17 short e_termination;
18 short e_exit;
19 } ut_exit;
20 time_t ut_time;
21 };
22
23 #endif /* utmp.h. */
This page took 0.035141 seconds and 5 git commands to generate.