diff options
Diffstat (limited to 'sysdeps/unix/sysv/utmp.h')
-rw-r--r-- | sysdeps/unix/sysv/utmp.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/utmp.h b/sysdeps/unix/sysv/utmp.h new file mode 100644 index 0000000000..4c3d33e987 --- /dev/null +++ b/sysdeps/unix/sysv/utmp.h @@ -0,0 +1,23 @@ +#ifndef _UTMP_H + +#define _UTMP_H 1 + +#include <time.h> + +struct utmp + { +#define ut_name ut_user + char ut_user[8]; + char ut_id[4]; + char ut_line[12]; + short ut_pid; + short ut_type; + struct exit_status + { + short e_termination; + short e_exit; + } ut_exit; + time_t ut_time; + }; + +#endif /* utmp.h. */ |