libc: initial implementation of posix_spawn
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#ifndef LIBC_EXEC_SPAWN_FILE_ACTIONS_H_
|
||||
#define LIBC_EXEC_SPAWN_FILE_ACTIONS_H_
|
||||
|
||||
#include <spawn.h>
|
||||
|
||||
struct __posix_spawn_file_actions {
|
||||
long temp[4];
|
||||
};
|
||||
|
||||
_Static_assert(
|
||||
sizeof(struct __posix_spawn_file_actions)
|
||||
<= __POSIX_SPAWN_FILE_ACTIONS_SIZE__,
|
||||
"struct __posix_spawn_file_actions is too big");
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user