spawn.h 1.1 KB

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