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 @@ -89,6 +89,8 @@ getutxline
89
89
lio_listio
90
90
ntptimeval
91
91
open_wmemstream
92
+ posix_spawn_file_actions_addchdir_np
93
+ posix_spawn_file_actions_addfchdir_np
92
94
preadv2
93
95
preadv64
94
96
prlimit
Original file line number Diff line number Diff line change @@ -980,6 +980,17 @@ extern "C" {
980
980
pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
981
981
pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
982
982
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
+
983
994
pub fn getutxent ( ) -> * mut utmpx ;
984
995
pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
985
996
pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
You can’t perform that action at this time.
0 commit comments