| 160 | void* (*PlatformSpecificMemset)(void*, int, size_t) = memset; |
| 161 | |
| 162 | static int IsNanImplementation(double d) |
| 163 | { |
| 164 | return isnan(d); |
| 165 | } |
| 166 | |
| 167 | static int IsInfImplementation(double d) |
| 168 | { |
nothing calls this directly
no outgoing calls
no test coverage detected