rework langinfo code for ABI compat and for use by time code
[musl] / src / process / posix_spawn_file_actions_init.c
1 #include <spawn.h>
2
3 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
4 {
5         fa->__actions = 0;
6         return 0;
7 }