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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/include/lastlog.h')
-rw-r--r--winsup/cygwin/include/lastlog.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/winsup/cygwin/include/lastlog.h b/winsup/cygwin/include/lastlog.h
new file mode 100644
index 000000000..4a5a8f87f
--- /dev/null
+++ b/winsup/cygwin/include/lastlog.h
@@ -0,0 +1,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