Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
d91ad4ca
Commit
d91ad4ca
authored
Dec 11, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setjmp.h: Use GCC-style setjmp on Clang in MSVC mode.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d98dc7c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
setjmp.h
include/msvcrt/setjmp.h
+2
-2
No files found.
include/msvcrt/setjmp.h
View file @
d91ad4ca
...
...
@@ -149,7 +149,7 @@ _ACRTIMP void __cdecl longjmp(jmp_buf,int);
# ifdef _UCRT
# define _setjmpex __intrinsic_setjmpex
# endif
# if
def __GNUC__
# if
defined(__GNUC__) || defined(__clang__)
_ACRTIMP
int
__cdecl
__attribute__
((
__nothrow__
,
__returns_twice__
))
_setjmpex
(
jmp_buf
,
void
*
);
# define setjmp(buf) _setjmpex(buf,__builtin_frame_address(0))
# define setjmpex(buf) _setjmpex(buf,__builtin_frame_address(0))
...
...
@@ -158,7 +158,7 @@ _ACRTIMP int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(j
# ifdef _UCRT
# define _setjmp __intrinsic_setjmp
# endif
# if
def __GNUC__
# if
defined(__GNUC__) || defined(__clang__)
_ACRTIMP
int
__cdecl
__attribute__
((
__nothrow__
,
__returns_twice__
))
_setjmp
(
jmp_buf
);
# else
_ACRTIMP
int
__cdecl
_setjmp
(
jmp_buf
);
...
...
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