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