newlib/winsup/cygwin/include/lastlog.h

13 lines
157 B
C
Raw Normal View History

2000-02-17 20:38:33 +01:00
#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