xref: /haiku/src/system/libroot/posix/musl/math/arm64/trunc.c (revision 1a76488fc88584bf66b9751d7fb9b6527ac20d87)
1 #include <math.h>
2 
3 double trunc(double x)
4 {
5 	__asm__ ("frintz %d0, %d1" : "=w"(x) : "w"(x));
6 	return x;
7 }
8