| 378 | /* Clean up any remaining temporary files. */ |
| 379 | |
| 380 | static void |
| 381 | cleanup (void) |
| 382 | { |
| 383 | for (struct tempnode const *node = temphead; node; node = node->next) |
| 384 | unlink (node->name); |
| 385 | temphead = NULL; |
| 386 | } |
| 387 | |
| 388 | /* Handle interrupts and hangups. */ |
| 389 |
no outgoing calls
no test coverage detected