Fix ceilf and floorf. Spotted by Thomas.

svn path=/trunk/; revision=67775
This commit is contained in:
Timo Kreuzer 2015-05-16 17:25:45 +00:00
parent 3ab971bc6b
commit 590281aa7b
2 changed files with 2 additions and 2 deletions

View file

@ -7,5 +7,5 @@ __cdecl
ceilf(
_In_ float x)
{
return (float)ceilf((double)x);
return (float)ceil((double)x);
}

View file

@ -7,5 +7,5 @@ __cdecl
floorf(
_In_ float x)
{
return (float)floorf((double)x);
return (float)floor((double)x);
}