| 177 | } |
| 178 | |
| 179 | static int IsInfImplementation(double d) |
| 180 | { |
| 181 | # ifdef __MICROLIB |
| 182 | return 0; |
| 183 | # else |
| 184 | return isinf(d); |
| 185 | # endif |
| 186 | } |
| 187 | |
| 188 | int DummyAtExit(void(*)(void)) |
| 189 | { |
nothing calls this directly
no outgoing calls
no test coverage detected