| 168 | void* (*PlatformSpecificMemset)(void*, int, size_t) = memset; |
| 169 | |
| 170 | static int IsNanImplementation(double d) |
| 171 | { |
| 172 | # ifdef __MICROLIB |
| 173 | return 0; |
| 174 | # else |
| 175 | return isnan(d); |
| 176 | # endif |
| 177 | } |
| 178 | |
| 179 | static int IsInfImplementation(double d) |
| 180 | { |
nothing calls this directly
no outgoing calls
no test coverage detected