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