mirror of git://git.musl-libc.org/musl
add missing posix_spawnattr_init/destroy functions
This commit is contained in:
parent
801b311a5b
commit
0f1ef81462
|
@ -0,0 +1,6 @@
|
||||||
|
#include <spawn.h>
|
||||||
|
|
||||||
|
int posix_spawnattr_destroy(posix_spawnattr_t *attr)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
#include <spawn.h>
|
||||||
|
|
||||||
|
int posix_spawnattr_init(posix_spawnattr_t *attr)
|
||||||
|
{
|
||||||
|
*attr = (posix_spawnattr_t){ 0 };
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue