mirror of https://git.musl-libc.org/git/musl
2 changed files with 13 additions and 0 deletions
@ -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