| 256 | #else |
| 257 | #pragma function(ceil) |
| 258 | _Check_return_ double __cdecl ceil(_In_ double _X) |
| 259 | { |
| 260 | int v = static_cast<int>(_X); |
| 261 | return static_cast<double>(_X > static_cast<double>(v) ? v + 1 : v); |
| 262 | } |
| 263 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected