initial implementation of posix_spawn
[musl] / src / process / posix_spawn_file_actions_destroy.c
1 #include <spawn.h>
2 #include <stdlib.h>
3
4 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *fa)
5 {
6         // FIXME
7         free(fa->__actions);
8         return 0;
9 }