summaryrefslogtreecommitdiff
path: root/lib/readutmp.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-01-30 16:45:17 +0000
committerJim Meyering <jim@meyering.net>2000-01-30 16:45:17 +0000
commit3d64706c7e5df94c12fa4f958ff82cbc2de1c7eb (patch)
treec0cdd6fe78dac19eea61596e660aef834c4b2fbe /lib/readutmp.h
parent774786b0cdae77640c918f28022ed4341e4bbcaa (diff)
downloadcoreutils-3d64706c7e5df94c12fa4f958ff82cbc2de1c7eb.tar.xz
redo it on per-header basis
Diffstat (limited to 'lib/readutmp.h')
-rw-r--r--lib/readutmp.h31
1 files changed, 23 insertions, 8 deletions
diff --git a/lib/readutmp.h b/lib/readutmp.h
index d7ad90c26..a555e58ee 100644
--- a/lib/readutmp.h
+++ b/lib/readutmp.h
@@ -30,14 +30,6 @@
# include <sys/types.h>
-/* Accessor macro for the member named ut_user or ut_name. */
-# if HAVE_STRUCT_UTMPX_UT_USER || HAVE_STRUCT_UTMP_UT_USER
-# define UT_USER(Utmp) Utmp->ut_user
-# endif
-# if HAVE_STRUCT_UTMPX_UT_NAME || HAVE_STRUCT_UTMP_UT_NAME
-# define UT_USER(Utmp) Utmp->ut_name
-# endif
-
# ifdef HAVE_UTMPX_H
# include <utmpx.h>
# define UTMP_STRUCT_NAME utmpx
@@ -56,6 +48,29 @@
# define UTMP_NAME_FUNCTION utmpname
# endif
+/* Accessor macro for the member named ut_user or ut_name. */
+# ifdef HAVE_UTMPX_H
+
+# if HAVE_STRUCT_UTMPX_UT_USER
+# define UT_USER(Utmp) Utmp->ut_user
+# endif
+# if HAVE_STRUCT_UTMPX_UT_NAME
+# undef UT_USER
+# define UT_USER(Utmp) Utmp->ut_name
+# endif
+
+# else
+
+# if HAVE_STRUCT_UTMP_UT_USER
+# define UT_USER(Utmp) Utmp->ut_user
+# endif
+# if HAVE_STRUCT_UTMP_UT_NAME
+# undef UT_USER
+# define UT_USER(Utmp) Utmp->ut_name
+# endif
+
+# endif
+
typedef struct UTMP_STRUCT_NAME STRUCT_UTMP;
# include <time.h>