| 102 | } |
| 103 | |
| 104 | void TOutput::perror(const char* message, int errno_copy) { |
| 105 | std::string out = message + std::string(": ") + strerror_s(errno_copy); |
| 106 | f_(out.c_str()); |
| 107 | } |
| 108 | |
| 109 | std::string TOutput::strerror_s(int errno_copy) { |
| 110 | #ifdef __ZEPHYR__ |
no test coverage detected