summaryrefslogtreecommitdiff
path: root/src/math/x86_64/fabsl.c
blob: cc1c9ed9c73ff1d555accc5d1df2db2a146ad08b (plain) (blame)
1
2
3
4
5
6
7
#include <math.h>

long double fabsl(long double x)
{
	__asm__ ("fabs" : "+t"(x));
	return x;
}