| 33 | #ifndef _WIN32 |
| 34 | extern "C" { |
| 35 | int xhandler(Display *dpy, XErrorEvent *xe) |
| 36 | { |
| 37 | fprintf(stderr, "X11 Error: %s\n", x11error(xe->error_code)); |
| 38 | return 0; |
| 39 | } |
| 40 | } // extern "C" |
| 41 | #endif |
| 42 |
nothing calls this directly
no test coverage detected