2018-09-12 13:30:46 +00:00
|
|
|
#ifndef _SPAWN_H
|
2000-10-01 19:15:29 +00:00
|
|
|
#include <posix/spawn.h>
|
2018-09-12 13:30:46 +00:00
|
|
|
|
|
|
|
# ifndef _ISOMAC
|
|
|
|
__typeof (posix_spawn) __posix_spawn;
|
|
|
|
libc_hidden_proto (__posix_spawn)
|
|
|
|
|
|
|
|
__typeof (posix_spawn_file_actions_addclose)
|
|
|
|
__posix_spawn_file_actions_addclose attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawn_file_actions_adddup2)
|
|
|
|
__posix_spawn_file_actions_adddup2 attribute_hidden;
|
|
|
|
|
2019-04-25 17:54:03 +00:00
|
|
|
__typeof (posix_spawn_file_actions_addopen)
|
|
|
|
__posix_spawn_file_actions_addopen attribute_hidden;
|
|
|
|
|
2018-09-12 13:30:46 +00:00
|
|
|
__typeof (posix_spawn_file_actions_destroy)
|
|
|
|
__posix_spawn_file_actions_destroy attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawn_file_actions_init) __posix_spawn_file_actions_init
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawnattr_init) __posix_spawnattr_init
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawnattr_destroy) __posix_spawnattr_destroy
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawnattr_setflags) __posix_spawnattr_setflags
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawnattr_setsigdefault) __posix_spawnattr_setsigdefault
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
__typeof (posix_spawnattr_setsigmask) __posix_spawnattr_setsigmask
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
# endif /* !_ISOMAC */
|
|
|
|
#endif /* spawn.h */
|