in pathconf, -1, not 0, means unsupported.. syncio presumably works, too.
[musl] / src / process / posix_spawn_file_actions_init.c
1 #include <spawn.h>
2
3 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
4 {
5         fa->__actions = 0;
6         return 0;
7 }