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