mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Try to fix build
svn path=/trunk/; revision=40779
This commit is contained in:
parent
2b41ac2a04
commit
9f613d7ab5
1 changed files with 4 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue