master
1#include <spawn.h>
2
3int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
4{
5	fa->__actions = 0;
6	return 0;
7}