Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9b76c16e
Commit
9b76c16e
authored
Feb 01, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: longjmp doesn't have a return value.
parent
10dcc85d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
except.c
dlls/msvcrt/except.c
+1
-1
setjmp.h
include/msvcrt/setjmp.h
+1
-1
No files found.
dlls/msvcrt/except.c
View file @
9b76c16e
...
...
@@ -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
;
...
...
include/msvcrt/setjmp.h
View file @
9b76c16e
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment