summaryrefslogtreecommitdiff
path: root/src/process/posix_spawn_file_actions_destroy.c
blob: c2501ddfaf60a6941812b09e702c6c06f4bb7298 (plain) (blame)
1
2
3
4
5
6
7
8
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;
}