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

8 lines
96 B
C

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