aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/include/lastlog.h
blob: 4a5a8f87ffe17e73d8c8b6d2e8b94b77c4ca018f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _LASTLOG_H
#define _LASTLOG_H

#include <utmp.h>

struct lastlog {
	long ll_time;
	char ll_line[UT_LINESIZE];
	char ll_host[UT_HOSTSIZE];
};

#endif