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