mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 16:41:36 +00:00
file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
8 lines
121 B
C
8 lines
121 B
C
#include <spawn.h>
|
|
|
|
int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
|
|
{
|
|
fa->__actions = 0;
|
|
return 0;
|
|
}
|