b161263b87b23f8c04988adcee3af099aff0047e
[reactos.git] / lib / msvcrt / except / unwind.c
1 #include <windows.h>
2
3 void __cdecl
4 _global_unwind2(PEXCEPTION_REGISTRATION RegistrationFrame)
5 {
6 #ifdef __GNUC__
7    RtlUnwind(RegistrationFrame, &&__ret_label, NULL, 0);
8 __ret_label:
9    // return is important
10    return;
11 #else
12 #endif
13 }