blob: 864cfcc4f66eb5c0b8c87f38299fc727eb6e7eac [file] [log] [blame]
#include <math.h>
long double sqrtl(long double x)
{
__asm__ ("fsqrt" : "+t"(x));
return x;
}