| 249 | #ifdef _AMD64_ |
| 250 | #pragma function(ceilf) |
| 251 | _Check_return_ float __cdecl ceilf(_In_ float _X) |
| 252 | { |
| 253 | int v = static_cast<int>(_X); |
| 254 | return static_cast<float>(_X > static_cast<float>(v) ? v + 1 : v); |
| 255 | } |
| 256 | #else |
| 257 | #pragma function(ceil) |
| 258 | _Check_return_ double __cdecl ceil(_In_ double _X) |
nothing calls this directly
no outgoing calls
no test coverage detected