xref: /haiku/src/system/libroot/posix/musl/math/arm64/lround.c (revision a5061ecec55353a5f394759473f1fd6df04890da)
1 #include <math.h>
2 
3 long lround(double x)
4 {
5 	long n;
6 	__asm__ ("fcvtas %x0, %d1" : "=r"(n) : "w"(x));
7 	return n;
8 }
9