msvcrt: longjmp doesn't have a return value.

This commit is contained in:
Alexandre Julliard 2011-02-01 16:34:42 +01:00
parent 10dcc85de0
commit 9b76c16e7e
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ int CDECL __regs_MSVCRT__setjmp3(struct MSVCRT___JUMP_BUFFER *jmp, int nb_args,
/*********************************************************************
* 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;

View File

@ -95,7 +95,7 @@ extern "C" {
#endif
int __cdecl _setjmp(jmp_buf);
int __cdecl longjmp(jmp_buf,int);
void __cdecl longjmp(jmp_buf,int);
#ifdef __cplusplus
}