1#include <spawn.h>
2
3int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict mask)
4{
5	*mask = attr->__mask;
6	return 0;
7}
8