musl/src/process/posix_spawn_file_actions_init.c
Rich Felker c97f0d998c initial implementation of posix_spawn
file actions are not yet implemented, but everything else should be
mostly complete and roughly correct.
2011-05-28 18:36:30 -04:00

8 lines
121 B
C

#include <spawn.h>
int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
{
fa->__actions = 0;
return 0;
}