xref
: /
aosp_15_r20
/
external
/
musl
/
src
/
math
/
lround.c
(revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
math.h
>
2
lround(double x)
3
long
lround
(
double
x
)
4
{
5
return
round
(
x
);
6
}
7