blob: 2ad5bc599142beda505b28efcf8664810e5d6286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <spawn.h>
int posix_spawnattr_setsigdefault(posix_spawnattr_t *restrict attr, const sigset_t *restrict def)
{
attr->__def = *def;
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|