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
9void
10endutxent(void)
11{
12}
13
14
15void
16setutxent(void)
17{
18}
19
20
21struct utmpx*
22getutxent(void)
23{
24	return NULL;
25}
26
27
28struct utmpx*
29getutxid(const struct utmpx *ut)
30{
31	return NULL;
32}
33
34
35struct utmpx*
36getutxline(const struct utmpx *ut)
37{
38	return NULL;
39}
40
41
42struct utmpx*
43pututxline(const struct utmpx *ut)
44{
45	return NULL;
46}
47
48