| 80 | |
| 81 | |
| 82 | void done(int k) |
| 83 | { |
| 84 | if (action_file) |
| 85 | { |
| 86 | fclose(action_file); |
| 87 | unlink(action_file_name); |
| 88 | } |
| 89 | if (text_file) |
| 90 | { |
| 91 | fclose(text_file); |
| 92 | unlink(text_file_name); |
| 93 | } |
| 94 | if (union_file) |
| 95 | { |
| 96 | fclose(union_file); |
| 97 | unlink(union_file_name); |
| 98 | } |
| 99 | exit(k); |
| 100 | } |
| 101 | |
| 102 | |
| 103 | void onintr(int sig) |
no test coverage detected