X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Freadutmp.h;h=7cef30be523c44ceb8f6d4cf2ef78d617312a312;hb=cc3d34bc91283615d1472500d8acc5679ae308e2;hp=f468fed165104493ba6bb1a49ae54f0a2f22c0cd;hpb=c98e50278baa2c19aee3f16d13716f29ae41fdc6;p=gnulib.git diff --git a/lib/readutmp.h b/lib/readutmp.h index f468fed16..7cef30be5 100644 --- a/lib/readutmp.h +++ b/lib/readutmp.h @@ -34,10 +34,18 @@ # include # define UTMP_STRUCT_NAME utmpx # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_tv.tv_sec) +# define SET_UTMP_ENT setutxent +# define GET_UTMP_ENT getutxent +# define END_UTMP_ENT endutxent +# define UTMP_NAME_FUNCTION utmpxname # else # include # define UTMP_STRUCT_NAME utmp # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_time) +# define SET_UTMP_ENT setutent +# define GET_UTMP_ENT getutent +# define END_UTMP_ENT endutent +# define UTMP_NAME_FUNCTION utmpname # endif typedef struct UTMP_STRUCT_NAME STRUCT_UTMP;