X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Futmp.h;h=48a400d84dec3d17db76831b2036ba41cfe2ab2b;hb=759bf785a84bd56ed1b163594f3f66ade808c0e3;hp=92519c2e570734fbe68ef26a37f713809bc0a349;hpb=fa3bbbd453372c0894c8fe5170186d049911610f;p=musl diff --git a/include/utmp.h b/include/utmp.h index 92519c2e..48a400d8 100644 --- a/include/utmp.h +++ b/include/utmp.h @@ -10,14 +10,20 @@ extern "C" { #define ACCOUNTING 9 #define UT_NAMESIZE 32 #define UT_HOSTSIZE 256 +#define UT_LINESIZE 32 + +struct lastlog { + time_t ll_time; + char ll_line[UT_LINESIZE]; + char ll_host[UT_HOSTSIZE]; +}; #define ut_time ut_tv.tv_sec #define ut_name ut_user -#define ut_exit __ut_exit -#define e_termination __e_termination -#define e_exit __e_exit +#define ut_addr ut_addr_v6[0] #define utmp utmpx -#define utmpname(x) (-1) +#define e_exit __e_exit +#define e_termination __e_termination void endutent(void); struct utmp *getutent(void); @@ -27,9 +33,17 @@ struct utmp *pututline(const struct utmp *); void setutent(void); void updwtmp(const char *, const struct utmp *); +int utmpname(const char *); + +int login_tty(int); + +#define _PATH_UTMP "/dev/null/utmp" +#define _PATH_WTMP "/dev/null/wtmp" -#define _PATH_UTMP "/dev/null" -#define _PATH_WTMP "/dev/null" +#define UTMP_FILE _PATH_UTMP +#define WTMP_FILE _PATH_WTMP +#define UTMP_FILENAME _PATH_UTMP +#define WTMP_FILENAME _PATH_WTMP #ifdef __cplusplus }