summaryrefslogtreecommitdiff
path: root/src/utmpx/struct_utmpx.h
blob: 298a846e4a6aa6db3c3fc231c56accc2d8cfc7b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <utmpx.h>

struct utmpx {
	char ut_user[];
	char ut_id[];
	char ut_line[];
	pid_t ut_pid;
	short ut_type;
	struct timeval ut_tv;
};

/*
XOPEN(400)
*/