Re: [ros-dev] [ros-diffs] [tkreuzer] 67718: [CRT] Add simple C implementations for acosf, ceilf, floorf, fmodf and fix sqrtf

2015-05-16 Thread Thomas Faber
On 2015-05-14 15:44, tkreu...@svn.reactos.org wrote: +_Check_return_ +float +__cdecl +ceilf( +_In_ float x) +{ +return (float)ceilf((double)x); +} +_Check_return_ +float +__cdecl +floorf( +_In_ float x) +{ +return (float)floorf((double)x); +} Did you mean to call ceil/floor

Re: [ros-dev] [ros-diffs] [tkreuzer] 67718: [CRT] Add simple C implementations for acosf, ceilf, floorf, fmodf and fix sqrtf

2015-05-16 Thread Timo Kreuzer
Yes, obviously :) Am 16.05.2015 um 15:29 schrieb Thomas Faber: On 2015-05-14 15:44, tkreu...@svn.reactos.org wrote: +_Check_return_ +float +__cdecl +ceilf( +_In_ float x) +{ +return (float)ceilf((double)x); +} +_Check_return_ +float +__cdecl +floorf( +_In_ float x) +{ +return