mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
ec4b4c33f3
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
26 lines
441 B
C
26 lines
441 B
C
/**
|
|
* 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 */
|