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
a5686fe5
Commit
a5686fe5
authored
Apr 09, 2004
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Apr 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added definition for HUGE_VAL.
parent
1595729a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
math.h
include/msvcrt/math.h
+12
-0
No files found.
include/msvcrt/math.h
View file @
a5686fe5
...
...
@@ -86,6 +86,18 @@ double yn(int, double);
int
MSVCRT
(
_matherr
)(
struct
MSVCRT
(
_exception
)
*
);
double
MSVCRT
(
_cabs
)(
struct
MSVCRT
(
_complex
));
#ifndef HUGE_VAL
# if defined(__GNUC__) && (__GNUC__ >= 3)
# define HUGE_VAL (__extension__ 0x1.0p2047)
# else
static
const
union
{
unsigned
char
__c
[
8
];
double
__d
;
}
__huge_val
=
{
{
0
,
0
,
0
,
0
,
0
,
0
,
0xf0
,
0x7f
}
};
# define HUGE_VAL (__huge_val.__d)
# endif
#endif
#ifdef __cplusplus
}
#endif
...
...
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