Re-install OpenSSL 0.9.8k
[msysgit.git] / include / lastlog.h
blob9db86206d127bb1bf023bd975466f321f395df3e
1 /* lastlog.h
3 Copyright 2001 Red Hat, Inc.
5 This file is part of Cygwin.
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9 details. */
11 #ifndef _LASTLOG_H
12 #define _LASTLOG_H
14 #include <utmp.h>
16 struct lastlog {
17 long ll_time;
18 char ll_line[UT_LINESIZE];
19 char ll_host[UT_HOSTSIZE];
22 #endif