Sign in
cobalt
/
cobalt
/
e51ce0a747a5219196e7c62622f7455b726bee71
/
.
/
third_party
/
musl
/
src
/
math
/
m68k
/
sqrtl.c
blob: b1c303c7e2696bd21ece2f50c85857b9dcb4c978 [
file
] [
log
] [
blame
]
#include
<math.h>
#if __HAVE_68881__
long
double
sqrtl
(
long
double
x
)
{
__asm__
(
"fsqrt.x %1,%0"
:
"=f"
(
x
)
:
"fm"
(
x
));
return
x
;
}
#else
#include
"../sqrtl.c"
#endif