musl-tcc/src/math/x86_64/sqrtl.c
2022-03-20 16:48:53 +08:00

8 lines
97 B
C

#include <math.h>
long double sqrtl(long double x)
{
__asm__ ("fsqrt" : "+t"(x));
return x;
}