File tree 3 files changed +20
-7
lines changed
src/unix/linux_like/linux/musl
3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -617,12 +617,12 @@ dlinfo
617
617
dlmopen
618
618
endutxent
619
619
explicit_bzero
620
+ fgetgrent_r
620
621
fgetspent_r
621
622
futimes
622
623
getauxval
623
624
getentropy
624
625
getgrent_r
625
- fgetgrent_r
626
626
getloadavg
627
627
getpt
628
628
getpwent_r
Original file line number Diff line number Diff line change @@ -56,13 +56,22 @@ aio_return
56
56
aio_suspend
57
57
aio_write
58
58
aiocb
59
+ asctime_r
60
+ basename
59
61
clock_adjtime
60
62
copy_file_range
61
63
ctermid
64
+ dirname
65
+ eaccess
66
+ endutxent
67
+ euidaccess
62
68
explicit_bzero
63
69
futimes
64
70
getauxval
65
71
getloadavg
72
+ getutxent
73
+ getutxid
74
+ getutxline
66
75
lio_listio
67
76
ntptimeval
68
77
open_wmemstream
@@ -71,14 +80,11 @@ prlimit
71
80
prlimit64
72
81
process_vm_readv
73
82
process_vm_writev
83
+ pututxline
74
84
pwritev64
75
85
reallocarray
76
- timex
77
- euidaccess
78
- eaccess
79
- asctime_r
86
+ setutxent
80
87
strftime
81
88
strftime_l
82
89
strptime
83
- dirname
84
- basename
90
+ timex
Original file line number Diff line number Diff line change @@ -900,6 +900,13 @@ extern "C" {
900
900
901
901
pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
902
902
pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
903
+
904
+ pub fn getutxent ( ) -> * mut utmpx ;
905
+ pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
906
+ pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
907
+ pub fn pututxline ( ut : * const utmpx ) -> * mut utmpx ;
908
+ pub fn setutxent ( ) ;
909
+ pub fn endutxent ( ) ;
903
910
}
904
911
905
912
// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments