musl - an implementation of the standard library for Linux-based systems
blob: 0dcd868f3c61450a84f94e86fa3261e4c5230469 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <spawn.h>
int posix_spawnattr_init(posix_spawnattr_t *attr)
{
*attr = (posix_spawnattr_t){ 0 };
return 0;
}
|