Sign in
android
/
platform
/
external
/
musl
/
6b77f992c8e1ccf92b9ce2379f814e7c3ea512c5
/
.
/
src
/
math
/
i386
/
sqrtl.c
blob: 864cfcc4f66eb5c0b8c87f38299fc727eb6e7eac [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
sqrtl
(
long
double
x
)
{
__asm__
(
"fsqrt"
:
"+t"
(
x
));
return
x
;
}