File tree 2 files changed +13
-0
lines changed
src/unix/linux_like/linux/musl
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ getutxline
80
80
lio_listio
81
81
ntptimeval
82
82
open_wmemstream
83
+ posix_spawn_file_actions_addchdir_np
84
+ posix_spawn_file_actions_addfchdir_np
83
85
preadv2
84
86
preadv64
85
87
prlimit
Original file line number Diff line number Diff line change @@ -968,6 +968,17 @@ extern "C" {
968
968
pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
969
969
pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
970
970
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
+
971
982
pub fn getutxent ( ) -> * mut utmpx ;
972
983
pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
973
984
pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
You can’t perform that action at this time.
0 commit comments