mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
18 lines
307 B
C
18 lines
307 B
C
/*
|
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
|
* PROJECT: ReactOS CRT library
|
|
* PURPOSE: Implementation of fabsf
|
|
* PROGRAMMER: Timo Kreuzer
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
_Check_return_
|
|
float
|
|
__cdecl
|
|
fabsf(
|
|
_In_ float x)
|
|
{
|
|
return (float)fabs((double)x);
|
|
}
|
|
|