| 143 | } |
| 144 | |
| 145 | int exit_status (int wait_status) |
| 146 | { |
| 147 | return wait_status != -1 && WIFEXITED(wait_status) ? WEXITSTATUS(wait_status) : -1; |
| 148 | } |
| 149 | |
| 150 | void touch_file (const std::string& filename) |
| 151 | { |
no outgoing calls
no test coverage detected