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