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