[MSVCRT] Comment out _setjmp/longjmp

Our own implementation is better and passes more tests.
This commit is contained in:
Timo Kreuzer
2025-12-30 12:57:14 +02:00
parent 386642c6f8
commit fda35b6d5a
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -729,6 +729,7 @@ int CDECL _except_handler4_common( ULONG *cookie, void (*check_cookie)(void),
}
#ifndef __REACTOS__
/*
* setjmp/longjmp implementation
*/
@@ -837,6 +838,7 @@ void __cdecl longjmp(_JUMP_BUFFER *jmp, int retval)
__wine_longjmp( (__wine_jmp_buf *)jmp, retval );
}
#endif // __REACTOS__
/*********************************************************************
* _seh_longjmp_unwind (MSVCRT.@)
+2
View File
@@ -87,6 +87,7 @@ ULONG_PTR get_exception_pc( DISPATCHER_CONTEXT *dispatch )
}
#ifndef __REACTOS__
/*******************************************************************
* longjmp (MSVCRT.@)
*/
@@ -109,6 +110,7 @@ void __cdecl longjmp( _JUMP_BUFFER *jmp, int retval )
__wine_longjmp( (__wine_jmp_buf *)jmp, retval );
}
#endif
#endif // __REACTOS__
/*******************************************************************
* _local_unwind (MSVCRT.@)