gdiplus: Use wide-char string literals.
[wine.git] / include / msvcrt / fenv.h
blob20906f38e29b27508858a05824cf9d1c62a95fd5
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the Wine project.
4 */
6 #ifndef _INC_FENV
7 #define _INC_FENV
9 #include <float.h>
11 #define FE_TONEAREST _RC_NEAR
12 #define FE_UPWARD _RC_UP
13 #define FE_DOWNWARD _RC_DOWN
14 #define FE_TOWARDZERO _RC_CHOP
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
20 _ACRTIMP int __cdecl fesetround(int);
22 #ifdef __cplusplus
24 #endif
26 #endif /* _INC_FENV */