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