| 106 | |
| 107 | #if 0 |
| 108 | void clickToContinue(Display *dpy) |
| 109 | { |
| 110 | XEvent e; |
| 111 | printf("Click mouse in window to continue ...\n"); |
| 112 | while(1) |
| 113 | { |
| 114 | if(XNextEvent(dpy, &e)) break; |
| 115 | if(e.type == ButtonPress) break; |
| 116 | } |
| 117 | } |
| 118 | #endif |
| 119 | |
| 120 | // Same as THROW but without the line number |
nothing calls this directly
no test coverage detected