blob: a49050aa4f7cdc7bbf9b6f3fc738ea74de0b8ca0 [file] [log] [blame]
Rich Felkerc97f0d92011-05-28 18:36:30 -04001#include <spawn.h>
2
Rich Felker400c5e52012-09-06 22:44:55 -04003int posix_spawnattr_getsigdefault(const posix_spawnattr_t *restrict attr, sigset_t *restrict def)
Rich Felkerc97f0d92011-05-28 18:36:30 -04004{
5 *def = attr->__def;
6 return 0;
7}