xref: /haiku/src/system/libroot/posix/musl/math/arm64/floorf.c (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 #include <math.h>
2 
3 float floorf(float x)
4 {
5 	__asm__ ("frintm %s0, %s1" : "=w"(x) : "w"(x));
6 	return x;
7 }
8