sysmacros major/minor: result should have type unsigned int, not dev_t
[musl] / include / utmp.h
1 #ifndef _UTMP_H
2 #define _UTMP_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <utmpx.h>
9
10 #define ACCOUNTING 9
11 #define UT_NAMESIZE 32
12 #define UT_HOSTSIZE 256
13
14 struct lastlog {
15         time_t ll_time;
16         char ll_line[UT_LINESIZE];
17         char ll_host[UT_HOSTSIZE];
18 };
19
20 #define ut_time ut_tv.tv_sec
21 #define ut_name ut_user
22 #define ut_exit __ut_exit
23 #define e_termination __e_termination
24 #define e_exit __e_exit
25 #define utmp utmpx
26 #define utmpname(x) (-1)
27
28 void         endutent(void);
29 struct utmp *getutent(void);
30 struct utmp *getutid(const struct utmp *);
31 struct utmp *getutline(const struct utmp *);
32 struct utmp *pututline(const struct utmp *);
33 void         setutent(void);
34
35 void updwtmp(const char *, const struct utmp *);
36
37 #define _PATH_UTMP "/dev/null"
38 #define _PATH_WTMP "/dev/null"
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif