newlib/winsup/mingw/mingwex/math/sqrtl.c

9 lines
129 B
C
Raw Normal View History

#include <math.h>
long double
sqrtl (long double x)
{
long double res;
asm ("fsqrt" : "=t" (res) : "0" (x));
return res;
}