1#include <spawn.h>
2
3int posix_spawnattr_init(posix_spawnattr_t *attr)
4{
5	*attr = (posix_spawnattr_t){ 0 };
6	return 0;
7}
8