16 lines
313 B
C
16 lines
313 B
C
|
|
#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
|