I'm using C++ Builder XE and want to check a float value is valid. According to the help, in math.h, there's a call
bool IsNan(float value)
However, when I try to compile this, it tells me
Call to undefined function 'IsNan'
Looking in math.h, there's no such thing as isnan (I used a non-case sensitive search)
Am I doing something silly, or what ?