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