mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 04:13:35 +00:00
17 lines
373 B
C
17 lines
373 B
C
/*
|
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
|
* PROJECT: ReactOS CRT library
|
|
* PURPOSE: Portable implementation of roundf
|
|
* PROGRAMMER: Timo Kreuzer ([email protected])
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
float roundf(float arg)
|
|
{
|
|
if (arg < 0.0)
|
|
return ceilf(arg - 0.5);
|
|
else
|
|
return floorf(arg + 0.5);
|
|
}
|