mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 20:41:35 +00:00
8 lines
136 B
C
8 lines
136 B
C
|
#include <spawn.h>
|
||
|
|
||
|
int posix_spawnattr_getsigmask(const posix_spawnattr_t *attr, sigset_t *mask)
|
||
|
{
|
||
|
*mask = attr->__mask;
|
||
|
return 0;
|
||
|
}
|