From c97f0d998cae23472ea30564663a8612dcfb6f83 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 28 May 2011 18:36:30 -0400 Subject: initial implementation of posix_spawn file actions are not yet implemented, but everything else should be mostly complete and roughly correct. --- src/process/posix_spawn_file_actions_destroy.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/process/posix_spawn_file_actions_destroy.c (limited to '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 index 00000000..c2501ddf --- /dev/null +++ b/src/process/posix_spawn_file_actions_destroy.c @@ -0,0 +1,9 @@ +#include +#include + +int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *fa) +{ + // FIXME + free(fa->__actions); + return 0; +} -- cgit v1.2.1