Patch by Jonathon Wilson:
[reactos.git] / reactos / lib / crtdll / except / abnorter.c
1 #include <windows.h>
2 #include <msvcrt\stdio.h>
3
4 #ifdef __GNUC__
5
6 /*
7 * @unimplemented
8 */
9 int _abnormal_termination(void)
10 {
11 printf("Abnormal Termination\n");
12 // return AbnormalTermination();
13 return 0;
14 }
15
16 #else
17 #endif