Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
process
/
posix_spawnattr_setsigdefault.c
blob: 5686972670a519dd5f10ad6b727f70b4cf3f308c [
file
]
#include
<spawn.h>
int
posix_spawnattr_setsigdefault
(
posix_spawnattr_t
*
restrict attr
,
const
sigset_t
*
restrict def
)
{
attr
->
__def
=
*
def
;
return
0
;
}