| 21 | static char fifo_filename[1024]; |
| 22 | |
| 23 | static void remove_fifo() { |
| 24 | if (unlink(fifo_filename) != 0) { |
| 25 | perror("alive-jobserver: unlink"); |
| 26 | exit(-1); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | static void sigint_handler(int) { |
| 31 | remove_fifo(); |
no outgoing calls
no test coverage detected