File tree Expand file tree Collapse file tree 3 files changed +20
-7
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -617,12 +617,12 @@ dlinfo
617617dlmopen
618618endutxent
619619explicit_bzero
620+ fgetgrent_r
620621fgetspent_r
621622futimes
622623getauxval
623624getentropy
624625getgrent_r
625- fgetgrent_r
626626getloadavg
627627getpt
628628getpwent_r
Original file line number Diff line number Diff line change @@ -56,13 +56,22 @@ aio_return
5656aio_suspend
5757aio_write
5858aiocb
59+ asctime_r
60+ basename
5961clock_adjtime
6062copy_file_range
6163ctermid
64+ dirname
65+ eaccess
66+ endutxent
67+ euidaccess
6268explicit_bzero
6369futimes
6470getauxval
6571getloadavg
72+ getutxent
73+ getutxid
74+ getutxline
6675lio_listio
6776ntptimeval
6877open_wmemstream
@@ -71,14 +80,11 @@ prlimit
7180prlimit64
7281process_vm_readv
7382process_vm_writev
83+ pututxline
7484pwritev64
7585reallocarray
76- timex
77- euidaccess
78- eaccess
79- asctime_r
86+ setutxent
8087strftime
8188strftime_l
8289strptime
83- dirname
84- basename
90+ timex
Original file line number Diff line number Diff line change @@ -896,6 +896,13 @@ extern "C" {
896896
897897 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
898898 pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
899+
900+ pub fn getutxent ( ) -> * mut utmpx ;
901+ pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
902+ pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
903+ pub fn pututxline ( ut : * const utmpx ) -> * mut utmpx ;
904+ pub fn setutxent ( ) ;
905+ pub fn endutxent ( ) ;
899906}
900907
901908// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments