mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 11:00:07 +00:00
24 lines
327 B
C
24 lines
327 B
C
|
#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. */
|