Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lastlog.h « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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