mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
12 lines
193 B
C
12 lines
193 B
C
#include <crtdll/math.h>
|
|
#include <crtdll/float.h>
|
|
|
|
int isnan(double x)
|
|
{
|
|
if ( x>= 0.0 && x < HUGE_VAL )
|
|
return FALSE;
|
|
else if ( x <= 0.0 && x > HUGE_VAL )
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
} |