initial implementation of posix_spawn
[musl] / src / process / posix_spawn_file_actions_init.c
diff --git a/src/process/posix_spawn_file_actions_init.c b/src/process/posix_spawn_file_actions_init.c
new file mode 100644 (file)
index 0000000..89d5e12
--- /dev/null
@@ -0,0 +1,7 @@
+#include <spawn.h>
+
+int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
+{
+       fa->__actions = 0;
+       return 0;
+}