HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ieeefp.h
Go to the documentation of this file.
1 /* Dummy includy file for NT */
2 /* Just the empty file needed for Linux, which has isnan in mathcalls.h */
3 
4 #ifdef WIN32
5 
6  #include <float.h>
7  #define isnanf(x) _isnan(x)
8 
9 #endif
10 
11 #ifdef MBSD
12 
13  #include <math.h>
14  #define isnanf __inline_isnanf
15 
16 #endif