X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Freadutmp.h;h=317a8f699706a2e11eb23f0808b9da8a210b8575;hb=f90389a769861bdfeeed82dbbc71169017f2b56b;hp=3d4ef253d40878cf53f6bed4a2661ea24582bda9;hpb=54e6da3dfa8dd464cf37dc0cb6a038e590fe421e;p=gnulib.git diff --git a/lib/readutmp.h b/lib/readutmp.h index 3d4ef253d..317a8f699 100644 --- a/lib/readutmp.h +++ b/lib/readutmp.h @@ -1,5 +1,5 @@ /* Declarations for GNU's read utmp module. - Copyright (C) 1992-2000 Free Software Foundation, Inc. + Copyright (C) 1992-2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -31,6 +31,10 @@ # include # ifdef HAVE_UTMPX_H +# ifdef HAVE_UTMP_H + /* HPUX 10.20 needs utmp.h, for the definition of e.g., UTMP_FILE. */ +# include +# endif # include # define UTMP_STRUCT_NAME utmpx # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_tv.tv_sec) @@ -42,6 +46,9 @@ # endif # else # include +# if !HAVE_DECL_GETUTENT + struct utmp *getutent(); +# endif # define UTMP_STRUCT_NAME utmp # define UT_TIME_MEMBER(UT_PTR) ((UT_PTR)->ut_time) # define SET_UTMP_ENT setutent @@ -62,6 +69,9 @@ # undef UT_USER # define UT_USER(Utmp) ((Utmp)->ut_name) # endif +# if defined HAVE_STRUCT_UTMPX_UT_TYPE +# define UT_TYPE(Utmp) ((Utmp)->ut_type) +# endif # else @@ -72,6 +82,9 @@ # undef UT_USER # define UT_USER(Utmp) Utmp->ut_name # endif +# if defined HAVE_STRUCT_UTMP_UT_TYPE +# define UT_TYPE(Utmp) ((Utmp)->ut_type) +# endif # endif