diff --git a/reactos/include/crt/math.h b/reactos/include/crt/math.h index 6fa5a43d5d5..c66003ed53b 100644 --- a/reactos/include/crt/math.h +++ b/reactos/include/crt/math.h @@ -272,6 +272,10 @@ extern "C" { return sw & (FP_NAN | FP_NORMAL | FP_ZERO ); } + __CRT_INLINE int __cdecl __fpclassify (double x){ + return __fpclassifyl((long double)x); + } + #define fpclassify(x) (sizeof (x) == sizeof (float) ? __fpclassifyf (x) \ : sizeof (x) == sizeof (double) ? __fpclassify (x) \ : __fpclassifyl (x))