mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
19 lines
307 B
C
19 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);
|
||
|
}
|
||
|
|