Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
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
;
}