mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00
inline the function
svn path=/trunk/; revision=39587
This commit is contained in:
parent
28c00b5c1c
commit
d6a64dee2c
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ extern "C" {
|
|||
/* #define isinf(x) (fpclassify(x) == FP_INFINITE) */
|
||||
|
||||
/* we don't have fpclassify */
|
||||
static int isinf (double d) {
|
||||
__CRT_INLINE int isinf (double d) {
|
||||
int expon = 0;
|
||||
double val = frexp (d, &expon);
|
||||
if (expon == 1025) {
|
||||
|
|
Loading…
Reference in a new issue