Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
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
;
}