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_init.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/process/posix_spawn_file_actions_init.c (limited to 'src/process/posix_spawn_file_actions_init.c') diff --git a/src/process/posix_spawn_file_actions_init.c b/src/process/posix_spawn_file_actions_init.c new file mode 100644 index 00000000..89d5e127 --- /dev/null +++ b/src/process/posix_spawn_file_actions_init.c @@ -0,0 +1,7 @@ +#include + +int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa) +{ + fa->__actions = 0; + return 0; +} -- cgit v1.2.1