| 284 | } |
| 285 | |
| 286 | void |
| 287 | win32_abort(void) |
| 288 | { |
| 289 | int c; |
| 290 | |
| 291 | if (WINDOWPORT(mswin) || WINDOWPORT(tty)) { |
| 292 | if (iflags.window_inited) |
| 293 | exit_nhwindows((char *) 0); |
| 294 | iflags.window_inited = FALSE; |
| 295 | } |
| 296 | if (wizard) { |
| 297 | raw_print("Execute debug breakpoint wizard?"); |
| 298 | if ((c = nhgetch()) == 'y' || c == 'Y') |
| 299 | DebugBreak(); |
| 300 | } |
| 301 | abort(); |
| 302 | } |
| 303 | |
| 304 | static char interjection_buf[INTERJECTION_TYPES][1024]; |
| 305 | static int interjection[INTERJECTION_TYPES]; |