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