Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 87 of file abort.c.
{ if (msvcrt_abort_behavior & MSVCRT__WRITE_ABORT_MSG) { if ((msvcrt_error_mode == MSVCRT__OUT_TO_MSGBOX) || ((msvcrt_error_mode == MSVCRT__OUT_TO_DEFAULT) && (__app_type == 2))) { DoMessageBox("Runtime error!", "abnormal program termination"); } else _cputs("\nabnormal program termination\n"); } raise(SIGABRT); /* in case raise() returns */ _exit(3); }