| 165 | void* (*PlatformSpecificMemset)(void*, int, size_t) = memset; |
| 166 | |
| 167 | static int IsNanImplementation(double d) |
| 168 | { |
| 169 | return isnan(d); |
| 170 | } |
| 171 | |
| 172 | static int IsInfImplementation(double d) |
| 173 | { |
nothing calls this directly
no outgoing calls
no test coverage detected