newlib/winsup/mingw/mingwex/math/fabsl.c

10 lines
130 B
C

#include <math.h>
long double
fabsl (long double x)
{
long double res;
asm ("fabs;" : "=t" (res) : "0" (x));
return res;
}