xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
math
/
llroundl.c
(revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
math.h
>
2
3
long
long
llroundl
(
long
double
x
)
4
{
5
return
roundl
(
x
);
6
}
7