mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[CRT/x64] Disable MSVCRT__setjmp function, which references non-existent function __wine_setjmpex
_setjmp is already defined in sdk/lib/crt/setjmp/amd64/setjmp.s
This commit is contained in:
parent
ff7035d940
commit
a644e7f5fd
1 changed files with 2 additions and 0 deletions
|
@ -674,11 +674,13 @@ unsigned int CDECL __CxxQueryExceptionSize(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __REACTOS__
|
||||||
/*******************************************************************
|
/*******************************************************************
|
||||||
* _setjmp (MSVCRT.@)
|
* _setjmp (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
__ASM_GLOBAL_FUNC( MSVCRT__setjmp,
|
__ASM_GLOBAL_FUNC( MSVCRT__setjmp,
|
||||||
"jmp " __ASM_NAME("__wine_setjmpex") );
|
"jmp " __ASM_NAME("__wine_setjmpex") );
|
||||||
|
#endif
|
||||||
|
|
||||||
/*******************************************************************
|
/*******************************************************************
|
||||||
* longjmp (MSVCRT.@)
|
* longjmp (MSVCRT.@)
|
||||||
|
|
Loading…
Reference in a new issue