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 @@ getloadavg
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 @@ -983,6 +983,17 @@ extern "C" {
983983
984984 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
985985 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 ;
986997}
987998
988999// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
You can’t perform that action at this time.
0 commit comments