Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
math
/
powerpc64
/
sqrtf.c
blob: b6ecb106b687b790bb2228fbd6c1fe79ca820aa2 [
file
]
#include
<math.h>
float
sqrtf
(
float
x
)
{
__asm__
(
"fsqrts %0, %1"
:
"=f"
(
x
)
:
"f"
(
x
));
return
x
;
}