xref: /aosp_15_r20/external/musl/src/math/llround.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
llround(double x)3 long long llround(double x)
4 {
5 	return round(x);
6 }
7