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 @@ getloadavg
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 @@ -983,6 +983,17 @@ extern "C" {
983
983
984
984
pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
985
985
pub fn basename ( path : * mut :: c_char ) -> * mut :: c_char ;
986
+
987
+ // Added in `musl` 1.1.24
988
+ pub fn posix_spawn_file_actions_addchdir_np (
989
+ actions : * mut :: posix_spawn_file_actions_t ,
990
+ path : * const :: c_char ,
991
+ ) -> :: c_int ;
992
+ // Added in `musl` 1.1.24
993
+ pub fn posix_spawn_file_actions_addfchdir_np (
994
+ actions : * mut :: posix_spawn_file_actions_t ,
995
+ fd : :: c_int ,
996
+ ) -> :: c_int ;
986
997
}
987
998
988
999
// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments