File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -72,17 +72,23 @@ aio_suspend
72
72
aio_write
73
73
aiocb
74
74
asctime_r
75
+ asctime_r
76
+ basename
75
77
basename
76
78
clock_adjtime
77
79
copy_file_range
78
80
ctermid
79
81
dirname
80
82
eaccess
83
+ endutxent
81
84
euidaccess
82
85
explicit_bzero
83
86
futimes
84
87
getauxval
85
88
getloadavg
89
+ getutxent
90
+ getutxid
91
+ getutxline
86
92
lio_listio
87
93
ntptimeval
88
94
open_wmemstream
@@ -94,8 +100,10 @@ prlimit
94
100
prlimit64
95
101
process_vm_readv
96
102
process_vm_writev
103
+ pututxline
97
104
pwritev2
98
105
pwritev64
99
106
reallocarray
107
+ setutxent
100
108
tcp_info
101
109
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