#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 10 of file seh0041.c.
10 {
13
15
16 for (Index1 = 0; Index1 < 10; Index1 += 1) {
17 try {
18 if ((Index1 & 0x1) == 1) {
19
20
21
22
24 }
25 }
26 finally {
27
29
30#if defined(_MSC_VER) && !defined(__clang__)
31 break;
32#endif
33 }
35#ifndef _MSC_VER
36 break;
37#endif
39 }
40
43 return -1;
44 }
45
46 return 0;
47}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0041.c" |