blob: f2532f8e0ea066e545dea36770bc9268068d28da [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_setsigmask(posix_spawnattr_t *restrict attr, const sigset_t *restrict mask)
Rich Felkerc97f0d92011-05-28 18:36:30 -04004{
5 attr->__mask = *mask;
6 return 0;
7}