File tree Expand file tree Collapse file tree
src/unix/linux_like/linux/musl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,11 +78,15 @@ copy_file_range
7878ctermid
7979dirname
8080eaccess
81+ endutxent
8182euidaccess
8283explicit_bzero
8384futimes
8485getauxval
8586getloadavg
87+ getutxent
88+ getutxid
89+ getutxline
8690lio_listio
8791ntptimeval
8892open_wmemstream
@@ -94,8 +98,10 @@ prlimit
9498prlimit64
9599process_vm_readv
96100process_vm_writev
101+ pututxline
97102pwritev2
98103pwritev64
99104reallocarray
105+ setutxent
100106tcp_info
101107timex
Original file line number Diff line number Diff line change @@ -993,6 +993,13 @@ extern "C" {
993993 actions : * mut :: posix_spawn_file_actions_t ,
994994 fd : :: c_int ,
995995 ) -> :: 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 ( ) ;
9961003}
9971004
9981005// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments