| 194 | void* (*PlatformSpecificMemset)(void* mem, int c, size_t size) = memset; |
| 195 | |
| 196 | static int IsInfImplementation(double d) |
| 197 | { |
| 198 | return !_finite(d); |
| 199 | } |
| 200 | |
| 201 | double (*PlatformSpecificFabs)(double d) = fabs; |
| 202 | extern "C" int (*PlatformSpecificIsNan)(double) = _isnan; |
nothing calls this directly
no outgoing calls
no test coverage detected