summaryrefslogtreecommitdiff
path: root/lib/readutmp.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-05-05 13:34:02 +0000
committerJim Meyering <jim@meyering.net>1999-05-05 13:34:02 +0000
commitb0cc976ab9f102278306642cbf275fd9e81934d7 (patch)
tree1ed5f9b11eef09f9cb8b3349602898cb2eb20579 /lib/readutmp.h
parent632b63d59ca16f4a3f901583f23a670b5fa61639 (diff)
downloadcoreutils-b0cc976ab9f102278306642cbf275fd9e81934d7.tar.xz
Add definitions to help read utmpx on systems with utmpname.
(UTMP_NAME_FUNCTION): Define. (SET_UTMP_ENT): Likewise. (GET_UTMP_ENT): Likewise. (END_UTMP_ENT): Likewise.
Diffstat (limited to 'lib/readutmp.h')
-rw-r--r--lib/readutmp.h8
1 files changed, 8 insertions, 0 deletions
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 <utmpx.h>
# 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 <utmp.h>
# 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;