File tree 2 files changed +13
-0
lines changed
src/unix/linux_like/linux/musl
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,15 @@ copy_file_range
78
78
ctermid
79
79
dirname
80
80
eaccess
81
+ endutxent
81
82
euidaccess
82
83
explicit_bzero
83
84
futimes
84
85
getauxval
85
86
getloadavg
87
+ getutxent
88
+ getutxid
89
+ getutxline
86
90
lio_listio
87
91
ntptimeval
88
92
open_wmemstream
@@ -94,8 +98,10 @@ prlimit
94
98
prlimit64
95
99
process_vm_readv
96
100
process_vm_writev
101
+ pututxline
97
102
pwritev2
98
103
pwritev64
99
104
reallocarray
105
+ setutxent
100
106
tcp_info
101
107
timex
Original file line number Diff line number Diff line change @@ -993,6 +993,13 @@ extern "C" {
993
993
actions : * mut :: posix_spawn_file_actions_t ,
994
994
fd : :: c_int ,
995
995
) -> :: c_int ;
996
+
997
+ pub fn getutxent ( ) -> * mut utmpx ;
998
+ pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
999
+ pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
1000
+ pub fn pututxline ( ut : * const utmpx ) -> * mut utmpx ;
1001
+ pub fn setutxent ( ) ;
1002
+ pub fn endutxent ( ) ;
996
1003
}
997
1004
998
1005
// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments