summaryrefslogtreecommitdiff
path: root/lib/readutmp.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-05-27 13:46:31 +0000
committerJim Meyering <jim@meyering.net>2001-05-27 13:46:31 +0000
commit5d896be5dc0f7d51a0148f99bdf4b7b45b229d91 (patch)
treec8105d7f95f3b63f2addfb959578d35927eb6f90 /lib/readutmp.h
parent0e94296ac1e930cec0e5585686b8a2d3e18499c2 (diff)
downloadcoreutils-5d896be5dc0f7d51a0148f99bdf4b7b45b229d91.tar.xz
(UT_TYPE): Define.
Diffstat (limited to 'lib/readutmp.h')
-rw-r--r--lib/readutmp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/readutmp.h b/lib/readutmp.h
index 6f512fad6..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
@@ -69,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
@@ -79,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