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

8 lines
85 B
C

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