crash -> debug_crash

This commit is contained in:
Glenn Maynard
2004-01-19 21:10:04 +00:00
parent 1f90b4bc2e
commit ae54bae77f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -857,7 +857,7 @@ BOOL APIENTRY CrashDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
return FALSE;
}
void crash() {
void debug_crash() {
__try {
__asm xor ebx,ebx
__asm mov eax,dword ptr [ebx]
+1 -1
View File
@@ -22,6 +22,6 @@ extern long __stdcall CrashHandler(struct _EXCEPTION_POINTERS *ExceptionInfo);
/* Exactly as advertised. (This will bring up the crash handler even
* in the debugger.) */
void crash();
void debug_crash();
#endif