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