| 143 | exit(2); |
| 144 | } |
| 145 | static void addHandler(char const* dstFileName) |
| 146 | { |
| 147 | if (UTIL_isRegularFile(dstFileName)) { |
| 148 | g_artefact = dstFileName; |
| 149 | signal(SIGINT, INThandler); |
| 150 | } else { |
| 151 | g_artefact = NULL; |
| 152 | } |
| 153 | } |
| 154 | /* Idempotent */ |
| 155 | static void clearHandler(void) |
| 156 | { |
no test coverage detected