Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
powerpc64
/
sqrt.c
blob: 13bb98d91cf204caefe08a36455527c8edb04df5 [
file
] [
log
] [
blame
]
#include
<math.h>
double
sqrt
(
double
x
)
{
__asm__
(
"fsqrt %0, %1"
:
"=d"
(
x
)
:
"d"
(
x
));
return
x
;
}