#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 10 of file seh0042.c.
10 {
13
15
16 for (Index1 = 0; Index1 < 10; Index1 += 1) {
17 try {
18 try {
19 if ((Index1 & 0x1) == 1) {
20
21
22
23
25 }
26 }
27 finally {
28
30#if defined(_MSC_VER) && !defined(__clang__)
31 break;
32#endif
33 }
35#ifndef _MSC_VER
36 break;
37#endif
38
40 }
41 finally {
42
44 }
47 }
48
51 return -1;
52 }
53
54 return 0;
55}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0042.c" |