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