mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 04:31:56 +00:00
file actions are not yet implemented, but everything else should be mostly complete and roughly correct.
8 lines
126 B
C
8 lines
126 B
C
#include <spawn.h>
|
|
|
|
int posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags)
|
|
{
|
|
attr->__flags = flags;
|
|
return 0;
|
|
}
|