aboutsummaryrefslogtreecommitdiff
path: root/src/process/posix_spawnattr_getsigmask.c
blob: 14f879fab6e51e5844599d4414cc75ef4b32a10b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <spawn.h>

int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict mask)
{
	*mask = attr->__mask;
	return 0;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif