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