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