blob: a49df844e0e2cae6f49f734f657825484cb3f654 [file] [log] [blame]
#include <spawn.h>
int posix_spawnattr_setsigmask(posix_spawnattr_t* restrict attr,
const sigset_t* restrict mask) {
attr->__mask = *mask;
return 0;
}