]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/process/posix_spawn_file_actions_init.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / 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 }