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
ec4b4c33
Commit
ec4b4c33
authored
Mar 19, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add fenv.h header.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
543209eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
Makefile.in
include/Makefile.in
+1
-0
fenv.h
include/msvcrt/fenv.h
+26
-0
No files found.
include/Makefile.in
View file @
ec4b4c33
...
...
@@ -444,6 +444,7 @@ SOURCES = \
msvcrt/eh.h
\
msvcrt/errno.h
\
msvcrt/fcntl.h
\
msvcrt/fenv.h
\
msvcrt/float.h
\
msvcrt/fpieee.h
\
msvcrt/inttypes.h
\
...
...
include/msvcrt/fenv.h
0 → 100644
View file @
ec4b4c33
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the Wine project.
*/
#ifndef _INC_FENV
#define _INC_FENV
#include <float.h>
#define FE_TONEAREST _RC_NEAR
#define FE_UPWARD _RC_UP
#define FE_DOWNWARD _RC_DOWN
#define FE_TOWARDZERO _RC_CHOP
#ifdef __cplusplus
extern
"C"
{
#endif
_ACRTIMP
int
__cdecl
fesetround
(
int
);
#ifdef __cplusplus
}
#endif
#endif
/* _INC_FENV */
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