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