xref: /haiku/src/system/libroot/posix/utmpx.cpp (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2020 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <utmpx.h>
7 
8 
9 void
10 endutxent(void)
11 {
12 }
13 
14 
15 void
16 setutxent(void)
17 {
18 }
19 
20 
21 struct utmpx*
22 getutxent(void)
23 {
24 	return NULL;
25 }
26 
27 
28 struct utmpx*
29 getutxid(const struct utmpx *ut)
30 {
31 	return NULL;
32 }
33 
34 
35 struct utmpx*
36 getutxline(const struct utmpx *ut)
37 {
38 	return NULL;
39 }
40 
41 
42 struct utmpx*
43 pututxline(const struct utmpx *ut)
44 {
45 	return NULL;
46 }
47 
48