Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android14-mainline-tethering-release
/
.
/
src
/
math
/
powerpc64
/
fabsf.c
blob: e9e45643d28eba3f37b4d69c37061d1066ab0561 [
file
] [
log
] [
blame
] [
edit
]
#include
<math.h>
float
fabsf
(
float
x
)
{
__asm__
(
"fabs %0, %1"
:
"=f"
(
x
)
:
"f"
(
x
));
return
x
;
}