summaryrefslogtreecommitdiff
path: root/lib/libm/aarch64/fabs.c
blob: 96c336dd256c8b473f6cdfc05c7513742f1ed479 (plain)
1
2
3
4
5
6
7
#include <math.h>

double fabs(double x)
{
	__asm__("fabs %d0, %d1" : "=w"(x) : "w"(x));
	return x;
}