1 #ifndef _SPAWN_H 2 #include <posix/spawn.h> 3 4 # ifndef _ISOMAC 5 __typeof (posix_spawn) __posix_spawn; 6 libc_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