#ifndef _BSD_UTMP_H #define _BSD_UTMP_H #include_next #include #undef UT_LINESIZE #define UT_LINESIZE sizeof(((struct utmp *)NULL)->ut_line) #undef UT_NAMESIZE #define UT_NAMESIZE sizeof(((struct utmp *)NULL)->ut_user) #undef UT_HOSTSIZE #define UT_HOSTSIZE sizeof(((struct utmp *)NULL)->ut_host) struct lastlog { long ll_time; char ll_line[12]; char ll_host[16]; }; #endif /* _BSD_UTMP_H */