mirror of
https://github.com/fluencelabs/musl
synced 2025-05-18 10:11:30 +00:00
8 lines
120 B
C
8 lines
120 B
C
#include <spawn.h>
|
|
|
|
int posix_spawnattr_init(posix_spawnattr_t *attr)
|
|
{
|
|
*attr = (posix_spawnattr_t){ 0 };
|
|
return 0;
|
|
}
|