| 145 | } |
| 146 | |
| 147 | static int IsInfImplementation(double d) |
| 148 | { |
| 149 | return isinf(d); |
| 150 | } |
| 151 | |
| 152 | int (*PlatformSpecificIsNan)(double) = IsNanImplementation; |
| 153 | int (*PlatformSpecificIsInf)(double) = IsInfImplementation; |
nothing calls this directly
no outgoing calls
no test coverage detected