musl-tcc/src/math/i386/fabsl.c

8 lines
96 B
C

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