From 9f613d7ab5d5dd36fe04317c40cb5fcb5a23ffef Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Sun, 3 May 2009 16:04:20 +0000 Subject: [PATCH] - Try to fix build svn path=/trunk/; revision=40779 --- reactos/include/crt/math.h | 4 ++++ 1 file changed, 4 insertions(+) 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))