mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 05:02:02 +00:00
8 lines
134 B
C
8 lines
134 B
C
![]() |
#include <spawn.h>
|
||
|
|
||
|
int posix_spawnattr_getflags(const posix_spawnattr_t *attr, short *flags)
|
||
|
{
|
||
|
*flags = attr->__flags;
|
||
|
return 0;
|
||
|
}
|