Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
math
/
llrint.c
blob: 4f583ae5536aa6152c3bab8671846da507f8f57e [
file
] [
log
] [
blame
] [
edit
]
#include
<math.h>
/* uses LLONG_MAX > 2^53, see comments in lrint.c */
long
long
llrint
(
double
x
)
{
return
rint
(
x
);
}