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