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 @@ -89,6 +89,8 @@ getutxline
8989lio_listio
9090ntptimeval
9191open_wmemstream
92+ posix_spawn_file_actions_addchdir_np
93+ posix_spawn_file_actions_addfchdir_np
9294preadv2
9395preadv64
9496prlimit
Original file line number Diff line number Diff line change @@ -980,6 +980,17 @@ extern "C" {
980980 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
981981 pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
982982
983+ // Added in `musl` 1.1.24
984+ pub fn posix_spawn_file_actions_addchdir_np (
985+ actions : * mut :: posix_spawn_file_actions_t ,
986+ path : * const :: c_char ,
987+ ) -> :: c_int ;
988+ // Added in `musl` 1.1.24
989+ pub fn posix_spawn_file_actions_addfchdir_np (
990+ actions : * mut :: posix_spawn_file_actions_t ,
991+ fd : :: c_int ,
992+ ) -> :: c_int ;
993+
983994 pub fn getutxent ( ) -> * mut utmpx ;
984995 pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
985996 pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
You can’t perform that action at this time.
0 commit comments