* Overrides open(2) to set O_CLOEXEC by default. */
| 53 | * Overrides open(2) to set O_CLOEXEC by default. |
| 54 | */ |
| 55 | int __wrap_open(const char* pathname, int flags, mode_t mode) { |
| 56 | return __real_open(pathname, flags | O_CLOEXEC, mode); |
| 57 | } |
| 58 | |
| 59 | /* |
| 60 | * The real close(2), renamed by GCC. |
nothing calls this directly
no outgoing calls
no test coverage detected