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
7229e921
Commit
7229e921
authored
Jan 29, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefix _JBLEN to avoid conflict on FreeBSD.
parent
ddf8a74a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
setjmp.h
include/msvcrt/setjmp.h
+11
-6
No files found.
include/msvcrt/setjmp.h
View file @
7229e921
...
...
@@ -16,9 +16,6 @@
#ifdef __i386__
#define _JBLEN 16
#define _JBTYPE int
typedef
struct
__JUMP_BUFFER
{
unsigned
long
Ebp
;
...
...
@@ -37,15 +34,23 @@ typedef struct __JUMP_BUFFER
#endif
/* __i386__ */
typedef
_JBTYPE
MSVCRT
(
jmp_buf
)[
_JBLEN
];
#ifndef USE_MSVCRT_PREFIX
#define _JBLEN 16
#define _JBTYPE int
typedef
_JBTYPE
jmp_buf
[
_JBLEN
];
#else
#define MSVCRT__JBLEN 16
#define MSVCRT__JBTYPE int
typedef
MSVCRT__JBTYPE
MSVCRT_jmp_buf
[
MSVCRT__JBLEN
];
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
int
MSVCRT
(
_setjmp
)(
MSVCRT
(
jmp_buf
));
int
MSVCRT
(
longjmp
)(
MSVCRT
(
jmp_buf
),
int
);
int
MSVCRT
(
_setjmp
)(
MSVCRT
(
jmp_buf
));
int
MSVCRT
(
longjmp
)(
MSVCRT
(
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