Commit 9b76c16e authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: longjmp doesn't have a return value.

parent 10dcc85d
...@@ -473,7 +473,7 @@ int CDECL __regs_MSVCRT__setjmp3(struct MSVCRT___JUMP_BUFFER *jmp, int nb_args, ...@@ -473,7 +473,7 @@ int CDECL __regs_MSVCRT__setjmp3(struct MSVCRT___JUMP_BUFFER *jmp, int nb_args,
/********************************************************************* /*********************************************************************
* longjmp (MSVCRT.@) * longjmp (MSVCRT.@)
*/ */
int CDECL MSVCRT_longjmp(struct MSVCRT___JUMP_BUFFER *jmp, int retval) void CDECL MSVCRT_longjmp(struct MSVCRT___JUMP_BUFFER *jmp, int retval)
{ {
unsigned long cur_frame = 0; unsigned long cur_frame = 0;
......
...@@ -95,7 +95,7 @@ extern "C" { ...@@ -95,7 +95,7 @@ extern "C" {
#endif #endif
int __cdecl _setjmp(jmp_buf); int __cdecl _setjmp(jmp_buf);
int __cdecl longjmp(jmp_buf,int); void __cdecl longjmp(jmp_buf,int);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment