initial check-in, version 0.5.0
[musl] / src / stub / utmpx.c
1 #include <utmpx.h>
2 #include <stddef.h>
3
4 void endutxent(void)
5 {
6 }
7
8 void setutxent(void)
9 {
10 }
11
12 struct utmpx *getutxent(void)
13 {
14         return NULL;
15 }
16
17 struct utmpx *getutxid(const struct utmpx *ut)
18 {
19         return NULL;
20 }
21
22 struct utmpx *getutxline(const struct utmpx *ut)
23 {
24         return NULL;
25 }
26
27 struct utmpx *pututxline(const struct utmpx *ut)
28 {
29         return NULL;
30 }