Files
rosetta/lib/libc/exec/spawn/file-actions.h
T

16 lines
313 B
C
Raw Normal View History

2026-05-30 10:02:45 +01:00
#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