1#ifndef _SPAWN_H
2#include <posix/spawn.h>
3
4# ifndef _ISOMAC
5__typeof (posix_spawn) __posix_spawn;
6libc_hidden_proto (__posix_spawn)
7
8__typeof (posix_spawn_file_actions_addclose)
9 __posix_spawn_file_actions_addclose attribute_hidden;
10
11__typeof (posix_spawn_file_actions_adddup2)
12 __posix_spawn_file_actions_adddup2 attribute_hidden;
13
14__typeof (posix_spawn_file_actions_addopen)
15 __posix_spawn_file_actions_addopen attribute_hidden;
16
17__typeof (posix_spawn_file_actions_destroy)
18 __posix_spawn_file_actions_destroy attribute_hidden;
19
20__typeof (posix_spawn_file_actions_init) __posix_spawn_file_actions_init
21 attribute_hidden;
22
23__typeof (posix_spawnattr_init) __posix_spawnattr_init
24 attribute_hidden;
25
26__typeof (posix_spawnattr_destroy) __posix_spawnattr_destroy
27 attribute_hidden;
28
29__typeof (posix_spawnattr_setflags) __posix_spawnattr_setflags
30 attribute_hidden;
31
32__typeof (posix_spawnattr_setsigdefault) __posix_spawnattr_setsigdefault
33 attribute_hidden;
34
35__typeof (posix_spawnattr_setsigmask) __posix_spawnattr_setsigmask
36 attribute_hidden;
37
38# endif /* !_ISOMAC */
39#endif /* spawn.h */
40