Rich Felker | c97f0d9 | 2011-05-28 18:36:30 -0400 | [diff] [blame] | 1 | #include <spawn.h> |
2 | |||||
Rich Felker | 400c5e5 | 2012-09-06 22:44:55 -0400 | [diff] [blame] | 3 | int posix_spawnattr_setsigmask(posix_spawnattr_t *restrict attr, const sigset_t *restrict mask) |
Rich Felker | c97f0d9 | 2011-05-28 18:36:30 -0400 | [diff] [blame] | 4 | { |
5 | attr->__mask = *mask; | ||||
6 | return 0; | ||||
7 | } |