xref
: /
third_party
/
ulib
/
musl
/
src
/
math
/
llround.c
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
math.h
>
2
llround(double x)
3
long
long
llround
(
double
x
) {
4
return
round
(
x
);
5
}
6