blob: f55f50e926fc468132999e0090eeadd56650b25c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <spawn.h>
int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa)
{
fa->__actions = 0;
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|