Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
aarch64
/
fabs.c
blob: 5c3ecaf44b1d53718cbeb2ca21aec1fa4b65694a [
file
] [
log
] [
blame
]
#include
<math.h>
double
fabs
(
double
x
)
{
__asm__
(
"fabs %d0, %d1"
:
"=w"
(
x
)
:
"w"
(
x
));
return
x
;
}