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