| 129 | } |
| 130 | |
| 131 | std::string DirPlusFile(const std::string &DirPath, |
| 132 | const std::string &FileName) { |
| 133 | return DirPath + GetSeparator() + FileName; |
| 134 | } |
| 135 | |
| 136 | void DupAndCloseStderr() { |
| 137 | int OutputFd = DuplicateFile(2); |
no test coverage detected