summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/math/aarch64/floor.c
blob: 50ffdb281b6103df5e44b4bc2f94a0861e502bc0 (plain)
1
2
3
4
5
6
7
#include <math.h>

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