| 1087 | static void |
| 1088 | signal_handler(int sig) |
| 1089 | { |
| 1090 | #ifndef SA_SIGINFO |
| 1091 | signal(sig, signal_handler); |
| 1092 | #endif |
| 1093 | got_signal = sig; |
| 1094 | } |
| 1095 | |
| 1096 | /* Arrange for SIGINT etc. to be caught by the handler. */ |
| 1097 | static void |
| 1098 | catch_signals(void) |
| 1099 | { |
nothing calls this directly
no outgoing calls
no test coverage detected