Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
process
/
posix_spawn_file_actions_destroy.c
blob: 3251babb556cae7cd6c81986b286ee7705e8285b [
file
]
#include
<spawn.h>
#include
<stdlib.h>
#include
"fdop.h"
int
posix_spawn_file_actions_destroy
(
posix_spawn_file_actions_t
*
fa
)
{
struct
fdop
*
op
=
fa
->
__actions
,
*
next
;
while
(
op
)
{
next
=
op
->
next
;
free
(
op
);
op
=
next
;
}
return
0
;
}