Commit 073016ec authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

math.h: Provide copysign declaration for ucrt.

parent ff9b2936
......@@ -182,8 +182,13 @@ static inline int _fpclassf(float x) { return _fpclass(x); }
static inline float ldexpf(float x, int y) { return ldexp(x, y); }
#ifdef _UCRT
_ACRTIMP double __cdecl copysign(double, double);
_ACRTIMP float __cdecl copysignf(float, float);
#else
#define copysign(x,y) _copysign(x,y)
#define copysignf(x,y) _copysignf(x,y)
#endif
double __cdecl nearbyint(double);
float __cdecl nearbyintf(float);
......
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