blob: cc1c9ed9c73ff1d555accc5d1df2db2a146ad08b [file] [log] [blame]
#include <math.h>
long double fabsl(long double x)
{
__asm__ ("fabs" : "+t"(x));
return x;
}