wait.h: add linux specific, thread-related waitpid() flags
[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 }