Commit ec4b4c33 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

include: Add fenv.h header.

parent 543209eb
......@@ -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 \
......
/**
* 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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment