Sign in
mojo
/
mojo
/
d050fec1c16c8f01d156da9b69aaa55932200eac
/
.
/
fusl
/
src
/
math
/
lround.c
blob: b8b795470f1868d831e7c2893c7f3b7f019ddbdb [
file
]
#include
<math.h>
long
lround
(
double
x
)
{
return
round
(
x
);
}