| 299 | ; |
| 300 | |
| 301 | inline bool not_found_error(int errval) noexcept |
| 302 | { |
| 303 | return errval == ENOENT || errval == ENOTDIR; |
| 304 | } |
| 305 | |
| 306 | /*! |
| 307 | * Closes a file descriptor and returns the result, similar to close(2). Unlike close(2), guarantees that the file descriptor is closed even if EINTR error happens. |
no outgoing calls
no test coverage detected