add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / process / posix_spawnattr_getflags.c
1 #include <spawn.h>
2
3 int posix_spawnattr_getflags(const posix_spawnattr_t *attr, short *flags)
4 {
5         *flags = attr->__flags;
6         return 0;
7 }