| 1535 | } |
| 1536 | |
| 1537 | static void |
| 1538 | X11_error_handler(String str) |
| 1539 | { |
| 1540 | nhUse(str); |
| 1541 | #if defined(HANGUPHANDLING) |
| 1542 | hangup(1); |
| 1543 | #ifdef SAFERHANGUP /* keeps going after hangup() for '#if SAFERHANGUP' */ |
| 1544 | end_of_input(); |
| 1545 | #endif |
| 1546 | #endif |
| 1547 | /*NOTREACHED*/ |
| 1548 | nh_terminate(EXIT_FAILURE); |
| 1549 | } |
| 1550 | |
| 1551 | static int |
| 1552 | X11_io_error_handler(Display *display) |
no test coverage detected