Sign in
◑
Theme
mojo
/
mojo-tools
/
db06898a53770ff272c75ba012a757597fc0e2c5
/
.
/
fusl
/
src
/
math
/
llrint.c
blob: d778d1f7ccd55d0aaabc25ba6a87d9218186da76 [
file
]
#include
<math.h>
/* uses LLONG_MAX > 2^53, see comments in lrint.c */
long
long
llrint
(
double
x
)
{
return
rint
(
x
);
}