blob: b40d2f584e9597512966ede2fa735d5be2a5fa3b [file] [log] [blame]
#include <spawn.h>
#include <stdlib.h>
#include "fdop.h"
int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t* fa) {
struct fdop *op = fa->__actions, *next;
while (op) {
next = op->next;
free(op);
op = next;
}
return 0;
}