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