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