File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ getutxline
8080lio_listio
8181ntptimeval
8282open_wmemstream
83+ posix_spawn_file_actions_addchdir_np
84+ posix_spawn_file_actions_addfchdir_np
8385preadv2
8486preadv64
8587prlimit
Original file line number Diff line number Diff line change @@ -968,6 +968,17 @@ extern "C" {
968968 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
969969 pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
970970
971+ // Added in `musl` 1.1.24
972+ pub fn posix_spawn_file_actions_addchdir_np (
973+ actions : * mut :: posix_spawn_file_actions_t ,
974+ path : * const :: c_char ,
975+ ) -> :: c_int ;
976+ // Added in `musl` 1.1.24
977+ pub fn posix_spawn_file_actions_addfchdir_np (
978+ actions : * mut :: posix_spawn_file_actions_t ,
979+ fd : :: c_int ,
980+ ) -> :: c_int ;
981+
971982 pub fn getutxent ( ) -> * mut utmpx ;
972983 pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
973984 pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
You can’t perform that action at this time.
0 commit comments